
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url(../img/alvo.png), auto;
}

a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

body {
    height: 100vh;
    display: grid;
    grid-template-rows: 100px 1fr;
}

main {
    background-image: url(../video/agent-background-generic.gif);
    background-repeat: no-repeat;
    background-size: cover; 
}

.valorant-icon img {
    width: 350px;
    height: 250px;
}

.menu-container {
    height: 100%;
    background-color: rgb(155, 50, 50);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-family: 'Vina Sans', cursive;
    gap: 10%;
    text-transform: capitalize;
}

.menu-container a {
    text-decoration: none;
    color: #000;
}

.menu-container a:hover{
    border-bottom: 4px solid transparent;
    transition: border-color 5s;
    cursor: pointer;
}

.fundo img {
    height: 100%;
    width: 100%;
}

#root {
    height: 100%;
}

.container {
    width: 100%;
    color: #fff;
}

@media (max-width: 640px) {
    .menu-container {
        height: 100%;
        background-color: rgb(155, 50, 50);
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 2rem;
        font-family: 'Vina Sans', cursive;
        text-transform: capitalize;
    }
    .valorant-icon{
        display: none;
    }
}
