 @import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
 @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
    footer {
        background-color: black;
        position: relative;
    }

    .bg-changer {
        height: 100vh;
        width: 100%;
        position: relative;
        /* Needed for absolute positioning of children */
        z-index: 1;
        overflow: hidden;
        /* Prevent image overflow just in case */
    }

    .bg-changer img {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        animation: imgChanger 15s infinite;
        object-fit: cover;
        z-index: 2;

    }


    .bg-changer img:nth-child(1) {
        animation-delay: 0s;
    }

    .bg-changer img:nth-child(2) {
        animation-delay: 5s;
    }

    .bg-changer img:nth-child(3) {
        animation-delay: 10s;
    }

    @keyframes imgChanger {
        0% {
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        30% {
            opacity: 1;
        }

        40% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    .contact-container {
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;

        z-index: 999;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: sans-serif;
    }

    .icons {
        display: flex;
        justify-items: center;
      
        margin-top: 20px;
    }

    .icons li {
        padding: 10px;
        list-style: none;
    }
    
    .icons a {
        text-decoration: none;
        font-size: 2.5rem;
        color: white;
        transition: all 0.3s ease-in-out;
        display: inline-block;
        position: relative;
    }

    .icons a:hover {
        transform: scale(1.3) rotate(5deg);
        color: #ff6a00;
        text-shadow: 0 0 15px rgba(255, 106, 0, 0.7);
    }



    .copyright {
        margin-top: 80px;
    }