@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;900&display=swap');
:root{
    --textcolor:#242424;
    --color1:#4AA8FF;
    --color2:#152A94;
    --textbutton:#fff;
}

.main{
    width: 100%;
    position: relative;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    top: 50vh;
    transform: translateY(-50%);
    
}
.center{
    margin:0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    max-width: 400px;        
    text-align: center;    
    line-height: normal;
}
.logo{
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}
.content{
    position: relative;
    width: 100%;
    max-width: 400px;
}
.content p{
    position: relative;   
}
.button{
    position: relative;
    display: inline-block;
    height: 100px;
    width: 300px;    
    background: linear-gradient(90deg, var(--color1) 5%, var(--color2) 100%);
    color: var(--textbutton);
    text-decoration: none;
    line-height: 100px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    transition: .5s;
    opacity: 1;
}
.button:hover{
    background: linear-gradient(90deg, var(--color1) 5%, var(--color2) 100%);    
    transition: .5s;
    opacity: 0.8;
}
.info{
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 20px;
}
.info p{
    font-weight: 100;
    color: var(--textcolor);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
.info p a{
    font-weight: 100;
    color: var(--textcolor);
    text-decoration: none;
}

@media only screen and (max-height: 600px) {
    .main{
        top: unset;
        transform: unset;
        margin-top: 50px;
        
    }       
}