:root {
    font-size: 6.25%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(150deg,#0F2B05 4.34%,#000000 87.6%);
    width: 100vw;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}

header {
    padding: 50rem 0rem;
}

.card-geral {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.card {
    background-image: url(assets/bg-explorer.svg);
    width: 264rem;
    height: 419rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 0.1rem solid black;
    border-radius: 15rem;
    user-select: none;
    -webkit-user-select: none;

    animation: apper 0.7s;
    animation-timing-function: ease-in-out;
    
}

.card img {
    width: 150rem;
    border-radius: 50%;
    border: 4rem solid yellow;
    object-fit: cover;
    margin-top: 100rem;

}

.info {
    margin-top: 98rem;
    text-align: left;
    margin-right: 95rem;
    color: white;
}

h1 {
    font-size: 18rem;
}

p {
    font-size: 14rem;
}

@keyframes apper {

    0% {
        transform: translateY(-210px);
    }

    100% {
        transform: translateY(0px);
    }

}