.banner, .banner-container
{
    height: 100vh;
}
.banner
{
    background: url(../imgs/banner.jpg) no-repeat center fixed;
    background-size: cover;
}
.banner-container
{
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: right;
}

.banner-block
{
    display: flex;
    height: auto;
    width: 50%;
    color: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.banner-block-title
{
    width: 50%;
    font-size: 4em;
    font-family: "Homemade Apple";
}

.banner-block-content
{
    width: 50%;
    font-size: 1.7em;
    font-weight: 300;
}
.banner-block-actions
{
    width: 50%;
    text-align: right;
}

@media screen and (max-width: 1500px) 
{
    .banner-container
    {
        justify-content: center;
    }
    .banner-block
    {
        width: 100%;
        height: auto;
        min-height: 30%;
        padding: 20px;
    }
}