@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap'); 

body {
  
    background-color: #000000;
    font-family: 'Roboto', sans-serif;
}

.box {
    display: flex;
    min-height: 100vh;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.finding {
    padding-top: 2rem;
    width: 50%;
}
h1{
    font-size: 4rem;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
}
p{
    font-size: 1.8rem;
    color: #FFF;
}
.logo{
    max-width: 40%;
    margin-bottom: 3rem;
}

@media (min-width: 320px) and (max-width: 480px) {
    h1{
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
  }