
@font-face {
    font-family: 'oswald regular';
    src: url('./Comfortaa/static/Comfortaa-Regular.ttf');
}
@font-face {
    font-family: 'oswald light';
    src: url('./Comfortaa/static/Comfortaa-Light.ttf');
}

.banner {
    background-image: url(./y-h--lx8Mntwhi0-unsplash.jpg);
    background-position: center;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'oswald light';
}
h1 {
    line-height: 100px;
    letter-spacing: 10px;
    text-align: center;
    font-family: 'oswald light';
}
h2 {
    font-size: 100px;
    text-align: center;
    font-family: 'oswald regular';
}
.blur {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 100px;
    box-shadow: 0px 0px 50px #333;
}
/* Mobile screen  */
@media only screen and (max-width: 768px) {
    .banner {
        background-image: url(./MOBILE_IMAGE.jpeg);
        background-position: center;
        height: 100vh;
        width: 100vw;
    }
}

.yellow {
    color: yellow;
}
