@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    margin: 44px 0 50px 76px;
}

.link-header{
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color:#989D9C;
    cursor: pointer;
    margin-right: 23px;
}

.button-header{
    background: #665AE1;
    width: 130px;
    height: 41px;
    border-radius: 20.5px;
    border: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    cursor: pointer;

    
}


.img-logo{
    width: 568px;
    height: 500px;
    margin-left:125px;
    display: inline-block;
}

section{
    display: inline-block;
    margin-left: 86px;
}

h1{
    font-weight: 900;
    color: #515151;
    font-size: 95px;
    line-height: 122px;
    text-transform: uppercase;
}

h2{
    font-weight: 500;
    font-size: 58px;
    line-height: 71px;
    color: #515151;
}

p{
   font-weight: 400;
   font-size: 24px;
   line-height: 29px;
   color: #848484;
   width: 515px;
   margin-top: 32px;
   margin-bottom: 25px;
}

.button-main{
    background: #ADFF00;
    border-radius: 30px;
    width: 239px;
    height: 64px;
    border: none;
    cursor: pointer;
    filter: drop-shadow(0px 4px 4px rgba(0, 0 , 0.25));
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #000000;
  
}
@media screen and (max-width:900px){

    header{
        margin-top: 40%;
        text-align: center;
    }

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

    
    .img-logo{
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
        
    }

    section{
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    h1{
        font-size: 50px;
        line-height:normal;
        width: auto;  

    }

    h2{
        font-size: 30px;
    }

    .button-main{
        display: block;
        margin: 20px auto;
    }
}