header {
    position: relative;
    z-index: 1;
}
main {
    position: relative;
    z-index: 1;
}
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.7;
    z-index: -1;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}
img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    animation: fadeIn 2s ease-in-out;
}
h1 {
    /*font-size: 3vw;*/
    font-size: 2.5rem;
    /*font-size: 2em;*/
    /*font-size: 48px;*/
    color: #333;
    margin-top: 50px;
    animation: slideIn 1s ease-in-out;
}
p {
    /*font-size: 2vw;*/
    font-size: 1.5rem;
    /*font-size: 24px;*/
    /*font-size: 1.2em;*/
    color: #000;
    line-height: 1.5;
    margin-top: 30px;
    animation: slideIn 1s ease-in-out;
}
.footer {
    /*position: relative;*/
    position: relative;
    display: flex;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    /*margin-top: 100vh; !*  the footer is pushed down by the entire height of the viewport *!*/
    bottom: 0;
    width: 100%;
    height: 60px;
    /*background-color: #f5f5f5;*/
    justify-content: center;
}
.footer img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    animation: fadeIn 2s ease-in-out;
}
.copy {
    font-size: 14px;
    color: #0F1214;
    margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
    }
    p {
        font-size: 18px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}
@media screen and (max-width: 768px) {
    .logo {
        width: 60%;
        max-width: 300px;
    }

    .text {
        font-size: 20px;
        margin: 0 10px;
    }

    footer {
        margin-top: 30px;
    }

    .social-media img {
        width: 25px;
    }

    footer .copy {
        margin-top: 10px;
    }

    #container {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 50%;
        max-width: 250px;
    }

    .text {
        font-size: 18px;
        margin: 0 5px;
    }

    .social-media img {
        width: 20px;
    }

    .footer .copy{
        font-size: 0.5em;
        margin-top: 60px;
    }

    #container {
        max-width: 100%;
    }
}
@media only screen and (max-width: 1200px) {
    /* Center content */
    #container {
        max-width: 100%;
        margin: 0 auto;
    }
}