body {
    background: linear-gradient(111.8deg, rgb(0, 104, 155) 19.8%, rgb(2, 159, 219) 92.1%);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100dvh;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer a, footer .subscribe {
    color: white;
    position: relative;
    text-decoration: none; 
    opacity: 0;
    animation: fadeInAnimation 2s 4s ease-in forwards;
}

footer a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
footer a:hover::before {
    transform: scaleX(1);
  }

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px; 
    height: auto;
    text-align: center; 
    opacity: 0;
    animation: fadeInAnimation 2s  ease-in forwards;
}

.tagline {
    font-size: 1em;
    margin-top: 0px;
    opacity: 0;
    animation: fadeInAnimation 2s 2s ease-in forwards;
    line-height: 28px;
}

@media (max-width: 768px) {
    .tagline {
    text-align: center;
    margin: 20px 10px 20px 10px;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

