@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

body {
    margin: 0 auto;
    background-color: rgb(0, 125, 255);
    font-family: 'Inter', sans-serif;
    font-family: 'Roboto', sans-serif;
}

.center {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 50%;
    height: 100vh;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 80%;
    height: auto;
    display: flex;
    background: #fc0;
    padding: 5px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.buttons {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.buttons button {
    width: 80%;
    height: 60px;
    margin: 1% auto;
    padding: 10px;
    background: rgb(0, 192, 109);
    border: none;
    border-radius: 30px;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons button a {
    text-decoration: none;
    color: #fff;
    display: block;

}
.buttons button a i {
    color: #fff;
    margin: 0 15px;
    font-weight: 500;
}
.email{
    width: 100%;
    margin: 3% 0;
    text-align: center;
}
.email p{
    margin: 2% 0;
    padding: 1% 0;
}
.email p a{
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}
.email h2{
    font-size: 30px;
    color: #fff;
}

@media screen and (max-width: 600px){
    
 .content {
    width: 100%;
}   
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}