* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global */
  
  @font-face {
    font-family: "Comfortaa";
    src: url(../fonts/Comfortaa-VariableFont_wght.ttf);
  }
  
  .section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5vw;
  }
  
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .wrap {
    display: flex;
    justify-content: space-between;
  }
  
  .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1vw;
  }
  
  .color {
    background-color: #77aad98a;
    border-radius: 10px;
    padding: 1vw;
  }
  
  .background {
    background-color: #062831;
  }
  
  .inner * {
    margin-bottom: 50px;
  }
  
  .w1 {
    width: 100%;
  }
  
  .w3{
    width: 10%;
  }

  .section__title {
    margin-bottom: 5vw;
  }
  
  h1 {
    font-size: 3.5em;
    color: white;
    display: block;
    text-align: center;
    font-family: "Comfortaa";
    margin-bottom: 4vw;
  }
  
  h2 {
    font-size: 2.5em;
    font-family: "Comfortaa";
    text-align: center;
    padding-top: 40px;
  }
  
  h3 {
    font-size: 1.5em;
    font-family: "Comfortaa";
    text-align: center;
  }
  
  p {
    font-size: 1.5em;
    text-align: justify;
    font-family: "Comfortaa";
    padding: 20px;
    margin-bottom: 10vw;
  }
  
  .text__color {
    color: white;
  }
  
  /* Menu */
  .menu__section {
    height: 100px;
    background: #77a5d9;
    padding-top: 0;
    padding-bottom: 0;
    position: fixed;
  }
  
  .menu__section__bottom {
    height: 120px;
    background: #77a5d9;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .menu__wrap {
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  .menu {
    display: flex;
    justify-content: space-between;
  }
  
  .menu__link {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-family: 'Lobster', cursive;
  }
  
  .logo {
    height: 100px;
    padding: 5px;
  }
  
  .end {
    display: flex;
    justify-content: end;
    margin-top: 0.5vw;
  }
  
  @media (max-width: 1920px) {
    .menu__link{
      font-size: 1.6em;
    }
    p{
      font-size: 1.4em;
    }
    .inner{
      margin-bottom: 4.3vw;
    }
  }
  
  @media (max-width: 1200px) {
    .inner{
      margin-bottom: 4.3vw;
    }
  }
  
  @media (max-width: 768px) {
    .menu__link{
      font-size: 1.2em;
    }
    .inner{
      margin-bottom: 4.3vw;
    }
    .menu__link{
      font-size: 1.3em;
    }
  }