/* StyleSheet:Start */
:root{
    --bg-image: url("bg-image.jpg");
}
*{
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

body{
    overflow-y: hidden;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    background: var(--bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.container{
    height: 100vh;
    width: 400px;
    padding: 10px;
    text-align: center;

    backdrop-filter: blur(5px) brightness(80%);
}

.content{
    margin: 30px 0px;
}

.company{
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.title{
    font-size: 4rem;
    font-family: 'Bacasime Antique', serif;
    margin-bottom: 15px;
}

.discription{
    font-size: 1.1em;
    line-height: 17px;
    width: 300px;
    margin: 0 auto 20px;
}

.logo img{
    width: 50%;
    height: auto;
    -webkit-filter: drop-shadow(2px 4px 6px #fff);
            filter: drop-shadow(2px 4px 6px #fff);
}
/* StyleSheet:End */

/* Responsiveness:Start */
@media screen and (max-width: 480px) {
    .container{
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    .company{
        font-size: 0.6em;
    }
    .title{
        font-size: 4em;
    }
    .discription{
        font-size: 0.7em;
    }
}
/* Responsiveness:End */