body {
    margin: 0px;
    font-family: "Lucida Console";
}

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

.background-img {
    position: fixed;
    left: 0;
    right: 0;
    height: 100vh;
    background-image: url('images/garage.jpg');
    background-size: 100%;
    z-index: -1;
    filter: blur(3px);
}

.content {
    min-width: 50%;
    /*background: white;*/
    /*opacity: 0.8;*/
    font-size: 5rem;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}


@media only screen and (max-width: 1800px){
    .background-img {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}


@media only screen and (max-width: 1300px){
    .content{
        font-size: 3rem;
        width: 70%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

}

@media only screen and (max-width: 700px){
    .content{
        font-size: 1.5rem;
        width: 80%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

}
