* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition:tranform 0.4s ease;
}

main {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: zoomIn 6s ease-in-out infinite alternate;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.2);
    /* backdrop-filter: blur(1px); */
}
.content h1{
    font-size: 4rem;
    color:#fff;
    text-align: center;
}
.content p{
    font-size: 1.5rem;
    color:#fff;
    text-align: center;
    margin-top:1rem;
}
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: rgba(51, 51, 51, 0.8);
    color: #fff;
    padding: 15px 10px;
    text-align: center;
    z-index: 10;
}

footer a:hover {
    color: goldenrod;
}

footer::after {
    content: "";
    display: block;
    /* height:1px; */
    /* background-color:linear-gradient(to right, #fff, #333); */
    width: 100%;
}
footer p {
    margin: 0;
    font-size: 0.9rem;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}