html, body, div, h1, p{
    margin: 0;
    padding: 0;
}

body{
    background-image: url('../images/background.jpg');
    background-size: cover;
    color: #FFF;
    overflow: hidden;
}


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

.square{
    display: block;
    position: absolute;
    height: 360px;
    width: 360px;
    background-color: rgba(255, 255, 255, .1);
    box-shadow: 1px 1px 100px rgba(38, 44, 70, .2);
    opacity: 1;
    animation: 3s ease-in-out infinite alternate dezoom;
}
@media all and (max-width: 800px){
    .square{
        height: 304px;
        width: 304px;
    }
}

.title{
    font-family: 'Roboto', sans-serif;
    font-size: 160px;
    font-weight: 400;
    line-height: 152px;
    text-transform: uppercase;
    user-select: none;
    animation: 3s ease-in-out infinite alternate zoom;
}
@media all and (max-width: 800px){
    .title{
        font-size: 112px;
        line-height: 96px;
    }
}


@keyframes zoom{
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.5);
    }
}

@keyframes dezoom{
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.9);
    }
}
