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

@font-face {
    font-family: "valorant";
    src: url("./../assets/fuentes/Valorant Font.ttf");
}

body {
    font-family: Arial, sans-serif;
    background-image: url('./../assets/img/VALORANT_Logo_V.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* MAIN */
.main {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* EXPLORAR */
.explorar {
    position: absolute;
    top: 80%; 
    z-index: 10;
}

.explorar__title {
    text-align: center;
}

.explorar__link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid white;
    display: inline-block;
    font-family: "valorant";
}

.explorar__link:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}