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

  .body{
    background-image: url(image/kosmos.jpg);
    background-size: cover;
  }
  
  
  /* 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;
    background-color: white;
    border-radius: 5%;
    justify-content: center;
    margin-top: 5vw;
  }
  .inner * {
    margin-bottom: 50px;
  }
  
  .image {
    width: 90%;
    height: 15vw;
  
  }
  
  .w1 {
    width: 100%;
  }
  
  .w2 {
    width: 47.5%;
  }
  
  .w3 {
    width: 30%;
  }
  
  .w4 {
    width: 21.25%;
  }
  
  h2 {
    font-size: 2.5em;
    font-family: "Comfortaa";
    text-align: center;
    padding-top: 40px;
    color: white;
  }
  
  h3 {
    font-size: 1.5em;
    font-family: "Comfortaa";
    text-align: center;
    color: white;
    margin-bottom: 1.5vw;
    background: linear-gradient(135deg, #1512bc 20%, #fa0eb6 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 3vw;
  }

  .flex__wrap {
    flex-wrap: wrap;
  }
  
  .btn{
    width: 100%;
    padding: 1vw;
    background: linear-gradient(135deg, #1512bc 20%, #fa0eb6 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: #06283167;
    border-radius: 8px;
    border: 1px solid black;
    text-decoration: none;
    margin-right: 5vw;
  }

  .container_menu {
    width: 100%;
    height: 5vw;
    background: rgb(255, 254, 254);
    padding-top: 1%;
    padding-bottom: 1%;
    margin-top: 0.5%;
    margin-bottom: -1%;
    position: fixed;
    display: flex;
    align-items: center;
  }
  
  .menu_link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 2%;
    padding-bottom: 2%;
    font-size: 1.3em;
    padding-left: 2vw;
    padding-right: 2vw;
    font-family: "Comfortaa";
  }
    a {
      text-decoration: none;
      color: black;
      font-weight: 500;
  }
  @media(max-width: 1200px){
    .w3{
      width: 47.5%;
    }
    .image{
      height: 22vw;
    }
  }