* {
    padding: 0;
    margin: 0;
}

body {
    background: url(./images/bg.jpg) no-repeat;
    background-size: cover;
}

.logo {
    display: flex;
    align-items: center;
    height: 100vh;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.easyButton {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 50px;
}

.logo img {
    width: 100%;
    max-width: 672px;
    height: auto;
}

.f12Button {
    color: #ffffff;
    background-color: #7BC361;
    border: none;
    border-radius: 32px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    margin-top: 30px;
    cursor: pointer;
}

@media only screen and (max-width: 667px) {
    .logo img{
        width: 90%;
    }
    .easyButton{
        padding-top: 0;
    }
}

@media only screen and (max-width: 475px) {
    
    .f12Button{
        padding: 20px;
    }
  
}
