* {
    margin: 0; padding: 0; box-sizing: border-box; 
}

body {
    background-color: #FFEFD3;
}

#container {
    margin: 10px;
}

.logo {
    height: 8px;
    background-color: #454545;
    height: 100%;
    display: flex;
    padding: 5px;
}



.logo img {
    filter: invert(100%);
}

#logotitle {
    color: white;
    font-family: 'Open Sans', sans-serif;
    margin-left: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header nav {
    display: flex;
    background-color: #ADB6C4;
    justify-content: end;
    align-items: center;
    height: 5vh;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  header nav li {
    float: left
  }
  
  header nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    border-left: 1px solid black;
    color: black;
    height: 5vh;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
  }
  
  /* Change the link color to #111 (black) on hover */
  header nav li a:hover {
    background-color: #8995a979 ;
  }

  .banner {
    display: flex;
    height: 30vh;
    background-image: linear-gradient(to right, #60495aa4, #adb6c4b4), url(../bannerimg1.jpg);
    background-repeat: no-repeat;
    background-position-y: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner h1 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 3vw;
  }

  main {
    display: flex;
    border: solid black 4px;
    height: 70vh;

  }

  aside {
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
    background-color: #FFC49B;
    justify-content: center;
    align-items: center;
  }

  aside ul {
    list-style: none;
  }

  aside h2 {
    font-family: 'open sans', sans-serif;
    font-size: clamp(50px, 3vw, 30px);
  }

  aside ul li a {
    font-family: 'open sans', sans-serif;
    font-size: clamp(28px,2.5vw,200px);
    color: black;
    text-decoration: none;
    text-decoration: underline
  }





  .body {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    justify-content: center;
    align-items: center;

  }

  .body h2 {
    color: #60495A;
    font-family: 'open sans', sans-serif;
    font-size: 3vh;
  }

  .body p {
    font-family: 'Open Sans', sans-serif;
    line-height: 3vh;
    margin: 1vh;
    font-size: clamp(14px, 1.2vw, 20px);
  }

  footer {
    display: flex;
    align-items: center;
    background-color: #454545;
    justify-content: space-around;
    height: 20vh;

  }

  footer li {
    list-style: none;

  }

  footer #toplink {
    font-family: 'Open Sans', sans-serif;
    color: #FFEFD3;
    margin-bottom: 5px;
  }

  footer ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Open Sans', sans-serif;
  }

  .contactbox {
    color: white;
    font-family: 'Open Sans', sans-serif;
  }

  #topcontact {
    color: #FFEFD3;
    margin-bottom: 5px;
  }

  footer img {
    height: 50%;
    filter: invert(100%);
  }

@media (max-width: 850px) {
  main {
    display: flex;
    flex-direction: column;
    border: solid black 4px;
    height: 100vh;
    
  }
  aside {
    flex: 1 0 25%;
    border: solid pink 10px;
    height: 10vh;
    flex-direction: column;
  }

  .body {
    flex: 1 0 75%;

  }

  aside ul {
    display: inline;
    margin-left: 1vw;
  
  }

  aside ul li {
    display: inline;
    margin-right: 1vw;
    font-size: ;
  }

  .banner {
    height: 10vh; 
  }

  footer img {
    height: 10vh
  }

  footer {
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
  }


  
}

@media (max-width: 550px) {
  main {
    height: 120vh;
  }
}

  
/* #FFC49B #45CB85 */