* {
    box-sizing:border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    /*font-family: Oxford1;*/
    color: whitesmoke;

    /*background-color: rgb(218, 220, 233);*/
    background-color: #21262E;
  }

  table{
    width: 100%;
    
  }

  th, td{
    padding: 15px;
    text-align: left;
  }
  
   /* unvisited link */
  a:link {
    color: #7CDCFE;
  }

  /* visited link */
  a:visited {
    color: #60adc9;
  }

  /* mouse over link */
  a:hover {
    color: yellow;
  }

  /* selected link */
  a:active {
    color: red;
  } 

  .container {
    padding-right: 64px;
    padding-left: 64px;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: x-large;
  }


  .caption{
    font-size: xx-small;
  }

@media (max-width:767px) {
  .container-top{
    font-size:27px;
    line-height:1.4em;
    padding-left:8px;
    padding-right:0px;
    position:relative;
  }
}

@media (min-width:768px){
  .container-top {
    padding-right: 64px;
    padding-left: 64px;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: x-large;
  }
}

@media (max-width:767px){
  .container-bottom{
      font-size:27px;
      line-height:1.4em;
      padding-left:8px;
      padding-right:0px;
      position:relative;
  
  }
}
@media (min-width:768px){
  .container-bottom {
    padding-right: 64px;
    padding-left: 64px;
    padding-top: 0px;
    padding-bottom: 64px;
    font-size: x-large;
  }
}


  .container img {
    width: fit-content;
  }

  .link-table img {
    width: fit-content;
    max-width: 300px;
  
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both
  }
  
  .column-66 {
    float: left;
    width: 66.66666%;
    padding: 20px;
    padding-left: 8px;
  }
  
  .column-33 {
    float: left;
    width: 33.33333%;
    padding: 20px;
  }
  
  .large-font {
    font-size: 48px;
  }
  
  .xlarge-font {
    font-size: 64px
  }
  
  .button {
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    background-color: #04AA6D;
  }
  


  img {
    display: block;
    height: auto;
    max-width: 100%;
  }
  
  @media screen and (max-width: 1000px) {
    .column-66,
    .column-33 {
      width: 100%;
      text-align: left;
    }
    img {
      margin: auto;
    }
  }

  /* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  /*background-color: #f1f1f1;*/
  background-color: #363D4A;
  color: whitesmoke;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: whitesmoke;
  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.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* 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;
  }
}

.footer {
  
  text-align: center;
  
}

.footer li{
  display: inline-block;
  margin: 0 20px;
}








/* contact */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}




/*
.contact-container{
  height: 100vh;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
*/
/*
@media screen and (max-width: 400px){
  .contact-inputs{
    width: 95%;
  }
  .contact-container textarea{
    width: 95%;
  }
}
  */

.contact-inputs{
  /*width: 400px;*/
  /*width: 100%;*/
  max-width: 400px;
  width: 90%;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-container textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
  /*width: 800px*/
  max-width: 800px;
  width: 90%;
}

.contact-container button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #784fff, #b51533);
  cursor: pointer;
}

