body{
    background-image: url("../img/bg.png");
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo {
    position: absolute;
    top: 70px;
}

.burnt {
    position: absolute;
    top: 445px;
}

.address {
    font-size: 23px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-bottom: 36px;
}


footer {
    position: absolute;
    bottom: -70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #E12726;
}

.social > .fa {
    font-size: 25px;
    padding-left: 10px;
    padding-right: 10px;
    color: #E12726;
    text-decoration: none;
}

@media only screen and (max-width: 1200px) {
    body {
        background-size: cover;
    }

    .logo {
        width: 95vw;
        top: 15vh;
    }

    .burnt {
        top:33vh;
        width: 50vw;
    }

    footer {
        transform: scale(0.7);
    }
}

@media only screen and (min-width: 1200px) {
    .logo {
        width: 50vw;
        top: 5vh;
    }

    .burnt {
        top: 45vh;
        width: 20vw;
    }

    footer {
        transform: scale(0.7);
        bottom: -80px;
    }
}