*{
    margin: 0;
    padding: 0;
    color: white;
}

body{
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../assets/img/main2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

html{
    font-size: 36px;
    animation: fade-in 2s ease 0s 1 normal forwards;
}


main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

html, body, main{
        height: 100%;
}

main > section:nth-child(1){
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main > section:nth-child(1) > img {
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    object-fit: cover;
    margin-top: 1rem;
    -webkit-animation: jello-vertical 1.5s both;
    animation: jello-vertical 1.5s both;
    object-position: 0px 1px;
}

main > section:nth-child(1) > h1 {
    font-size: 1rem;
    text-align: center;
}

main > section:nth-child(1) > h2 {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: kalamLight;
    text-align: center;
}

 main > section:nth-child(1){
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

main > section:nth-child(1) > a > img{
    width: 0.7rem;
    height: 0.7rem;
}


.button > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    position: relative;
    width: 250px;
}

.button{
    margin-top: 0.5rem;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.50);
}

.button  svg{
    min-width: 1rem;
    min-height: 1rem;
    max-width: 1rem;
    max-height: 1rem;
    position: absolute;
    left: 15;
}

.button  h2{
    font-size: 0.5rem;
}



@media (max-width: 680px) {

    body, html, main{
        height: auto;
    }

    .button > div{
        padding-left: 0;
    }
    
    .button{
        width: 80%;
    }

}


@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}