@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
body .app{
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    left: 0px; 
    top: 0px;

    margin: 0px;
    padding: 0px; 

    background-image: url("./../images/background-2.png");
    background-size: cover; 
    background-position: center;

    font-family: 'Roboto', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}
body .app .row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

body .app .item{
    width: 60%;
    background-color: #414291;
    
    border-radius: 50px;
    padding: 8px 15px;
    margin: 15px auto;

    display: flex;
    justify-content: center;
    align-items: center;
} 
body .app .item:hover{
    cursor: pointer;
}

body .app .item p{
    color: #fff;
    text-align: center;
    font-weight: bold;
}

@media(min-width:960px){
    body .app{
        background-image: url("./../images/background-desktop.png");
        background-size: auto 100%; 
        background-position: center;
        background-repeat: no-repeat;
    }

    body .app .item{
        width: 480px;
    }
}