body, html {
    margin: 0;
    padding: 0;
    font-family: Nunito,Arial,Helvetica,sans-serif!important;
    background-image: linear-gradient(90deg,#0a011e 0,#000);
    color: #fff;
	font-size: 20px;
	line-height: 2em;

}

a, a:visited, a:hover, a:active {
    color: white;
    text-decoration: underline; /* Optional: removes the underline */
}


#container {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
	text-align: center;
	margin-top: 20vh;
}

#footer {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
	text-align: center;

}

header h1 {
    text-align: center;
    margin-bottom: 20px;
}

.emojis {
    font-size: 50px;
}

.levitate1 {
    display: inline-block;
    animation: levitate1 3s infinite ease-in-out;
}

@keyframes levitate1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.levitate2 {
    display: inline-block;
    animation: levitate2 3s infinite ease-in-out;
}

@keyframes levitate2 {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
}

form {
	margin-top: 20px;
	margin-bottom: 20px;
}

input, button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

input {
    margin-right: 12px;
}

button {
    background-image: linear-gradient(to right, #ff416c, #ff4b2b); /* Example gradient */
    color: white;
    text-transform: uppercase;
}

button:hover {
    background-image: linear-gradient(to right, #ff4b2b, #ff416c); /* Invert gradient on hover */
}


button:hover {
    background-image: linear-gradient(to right, #ff4b2b, #ff416c); /* Invert gradient on hover */
}


.footer-link {
	margin-right:20px;
}