body {
    background-color: black;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.banner-image {
    width: 50vw;
}

p {
    color: white;
    margin: 0;
}

.banner-text {
    font-size: 3rem;
    font-weight: 400;
}

.smaller-text {
    font-size: 1.5rem;
    font-weight: 100;
}

.tiny-text {
    font-size:0.9rem;
    font-weight: 100;
    color: gray;
}

@media (max-width: 576px) {
    .banner-image {
        width: 85vw;
    }
    .banner-text {
        font-size: 2.5rem;
    }
}