@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic");


body {
    font-family: "Roboto", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f000;
}

a {
    text-decoration: none;
    color: #336699;
}

a:hover {
    color: #990000;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image {
    width: auto;
    height: 200px;
    object-fit: contain;
    margin: 0 -14px;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.middle {
    opacity: 1;
    animation: spin 3s ease-in-out;
}

.welcome-text {
    margin-top: 5px;
    font-size: 1.7rem;
    font-weight: bold;
    color: #696969;
    letter-spacing: 0.2rem;
    opacity: 0; /* Initially hidden */
}

.footer {
    font-size: 0.9rem;
    text-align: center;
    margin: 0 0em;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: #696969;
    opacity: 0; /* Initially hidden */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(1080deg);
    }
}

/* Delay the fade-in of the side images */
.left, .right {
    animation: fadeIn 3s ease-in-out 3s forwards;
}

/* Delay the fade-in of the welcome-text */
.welcome-text {
    animation: fadeIn 2s ease-in-out 4s forwards;
}

.footer {
    animation: fadeIn 2s ease-in-out 5s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}