.AboutMe
{
  height: 100%;

    /* background-color: rgb(23, 50, 94);
    border: 5px solid rgb(80, 93, 115);
    border-radius: 4px;
    padding: 20px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14pt;
    margin: right; */
}

.AboutMe img
{
  /* margin: 20px; */
  margin: 4%;
  border: 2px solid rgb(80, 93, 115);
  border-radius: 4px;
  float: left;

    /* background-color:transparent;
    border: 5px solid rgb(80, 93, 115);
    border-radius: 4px;
    padding: 20px;
    width: 50%;
    float: left; */
}

.AboutMe div
{
  width: 40%;
  height: auto;
  background-color: rgb(23, 50, 94);
  /* margin: 20px; */
  margin: 4%;
  padding: 5px;
  border: 5px solid rgb(80, 93, 115);
  border-radius: 4px;
  float: right;
  color: rgb(170, 192, 230);
  text-align: left;
  font-family:'Times New Roman', Times, serif;
}

.MainPage
{
    background-color: rgb(170, 192, 230);
}

h1
{
    text-align: center;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.header 
{
    overflow: hidden;
    background-color: rgb(6, 16, 33);
    border-radius: 50px;
    border: 10px solid rgb(80, 93, 115);
    padding: 20px 10px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
  
  /* Style the header links */
.header a 
{
    float: left;
    color: rgb(170, 192, 230);;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}
  
  /* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.name
{
    font-size: 25px;
    color:rgb(170, 192, 230);
    font-weight: bold;
}
  
  /* Change the background color on mouse-over */
.header a.links:hover 
{
    background-color: rgb(170, 192, 230);
    color: rgb(6, 16, 33);
}
  
  /* Style the active/current link*/
.header a.active 
{
    background-color: rgb(80, 93, 115);
    color: rgb(170, 192, 230);
}
  
  /* Float the link section to the right */
.header-right 
{
  float: right;
}
  
  /* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) 
{
  .header a 
  {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right 
  {
    float: none;
  }
}

.contentContainer
{
  display: grid;
  grid-template: auto / auto auto auto;
  gap: 10px;
  padding: 10px;
  background-color: rgb(80, 93, 115);;
  margin: 10px;
}

.content
{
  border: 4px solid rgb(6, 16, 33);
  border-radius: 15px;
  padding: 10px;
  background-color: rgb(23, 50, 94);
  color: rgb(170, 192, 230);
}

.content h1
{
  padding:0px;
  margin:0px;
  font-size: 21px;
  color: rgb(170, 192, 230);
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.content a 
{
  color: rgb(170, 192, 230)
}
