* {
margin: 0;
padding: 0;
}

body {
  height: 100%;
  font-family: "Times New Roman", Times, serif;
  background-color: Black;
  background-image: url("/src/img/cio60480.jpg");
  background-size: 20vh;
  color: white;
}

hr {
  height:1vh;
  background-color: #fff;
  border: none;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

marquee {
  font-style: italic; 
  font-size: 2.5vh;
}

p {
  font-size: 2.5vh;
}

h1 {
  font-size: 5vh;
}

.HomePGcontainer {
  display: grid;
  height: 100vh;
  grid-auto-rows: auto;
  grid-template-columns: auto 1fr;
  gap: 0px 0px; 
  grid-template-areas: 
    "content main"
}
.HomePGcontentbox { 
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.HomePGcontentbox a{ 
  color: white;
}

.HomePGcontentbox p:last-of-type{
  margin-top: auto;
  /* background-color: black; */
}

.HomePGmain {
  grid-area: main;
}

.HomePGcontent {
  padding: 2vh;
  background-color: black;
}

.HomePGcontent li{
  list-style-type: none;
}