@font-face {
    font-family: Degular;
    src: url(Degular.ttf);
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
    width: 94vw;
    height: 100vh;
    background: #EDF1FF;
    padding: 3vw;
    margin: 0;

}
/*Header*/
.header{
    position: fixed;
    top: 32px;
    display: flex;
    flex-direction: row;
    width: 70vw;
    max-width: 1440px;
    padding: 16px 72px;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    border : 1px solid #282830;
}

.logo{
    width: 40px;
}

.button-header {
    display: flex;
    padding: 0;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #4C6EE2;
    border: none;
    border-radius: 999px;
    box-shadow: 0 7px  #282830;
    height: 100%;
    margin-bottom: 7px;
  }
  
.title{
    font-size: 32px;
    color: #282830;
    font-family: Degular;
    font-weight: 600;
    text-align: center;

}

.button-header:active {
    box-shadow: none;
    transform: translateY(7px);
  }

.link-button-header{
    padding: 8px 16px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    font-family: Degular;
    font-weight: 400;
}

/*Fin Header*/

.intro{
    font-family: Degular;
    color: #282830;
    font-size: 24px;
    width: 100%;
    text-align: center;
}

.link-main-button{
    padding: 15px 54px;
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    text-align: center;
    font-family: Degular;
    font-weight: 400;
}

.main-button {
    display: flex;
    padding: 0;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #4C6EE2;
    border: none;
    border-radius: 999px;
    box-shadow: 0 7px  #282830;
  }
  
  button:active {
    box-shadow: none;
    transform: translateY(7px);
  }

  @media only screen and (max-width: 480px) {
    
    body{
        gap: 40px;
    }

    .header{
        padding: 16px 32px;
    }

    .link-button-header{
    display: none;
    }

    .intro{ 
        font-size: 20px;
    }

    .link-main-button{
        font-size: 20px;
    }

  }