@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body{
    background: url('../img/bg.jpg') top center;
    background-size:cover;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.center{
    text-align: center;
}

#logo{
    width:400px;
    margin-top:40px;
}

p{
    font-family: "Roboto", sans-serif;
    font-size:40px;
    text-align:center;
}

a, a:hover, a:visited{
    color:#000000;
    text-decoration: none;
}

@media (max-width:768px) {
    #logo{
        width:300px;
    }

    p{
        font-size:20px;
    }    
}