*{
    margin: 0;
    padding: 0;
    color: white;
}


html{
    font-size: 42px;
    animation: fade-in 2s ease 0s 1 normal forwards;
}

body{
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../assets/img/main.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    backdrop-filter: blur(5px);
}

section > img{
    width: 2rem;
    height: 2rem;
}

section > h1{
    font-size: 0.7rem;
    color: white;
    margin-top: 0.3rem;
}

section > p{
    font-size: 0.5rem;
    color: white;
    text-align: center;
    margin-top: 0.6rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

.center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
}

body a{
    font-size: 0.5rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 100%;
    text-align: center;
    text-decoration: none;

}

iframe{
    margin-bottom: 0.3rem;
}


footer{
    bottom: 0;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

footer{
    font-size: 0.5rem;
}




@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}



