@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

body {
    overflow-y: hidden;
}

h1 {
    text-transform: uppercase;
    font-family: "Roboto";
    color: #FFF;
    text-shadow: 0 0 10px #FFF;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: rgb(0, 0, 0);
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-logout {
    font-size: 1.5rem;
    padding: .4rem .8rem;
    border-radius: .3rem;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
}

.btn-logout:hover {
    background-color: #000;
    color: #fd0000;
    box-shadow: 0 0 20px #fd0000;
    border: 1px solid #fd0000;
    cursor: pointer;
}

.select-menu {
    margin-top: 10rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .8rem;
}

.btn-menu {
    font-size: 1.5rem;
    font-weight: bold;
    padding: .4rem .8rem;
    border-radius: .3rem;
    text-transform: uppercase;
    border: 1px solid #000;
    transition: all 300ms ease-in-out;
}

.btn-menu:hover {
    cursor: pointer;
    background-color: #c5c5c5;
}

.input-container {
    margin: 2rem auto;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.h2 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    font-family: "Roboto";
}

.input-id {
    font-size: 2rem;
    outline: none;
    padding: .5rem;
    width: 100%;
    text-align: center;
    border-radius: .3rem;
}

.input-id:focus {
    background-color: #bdbdbd;
    color: #FFF;
    text-shadow: 0 0 10px #000;
}

.container-players {
    border: 5px solid #000;
    height: 55dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    transition: all 350ms ease-in-out;
    gap: 1.2rem;
}

.titleH2 {
    padding: 1.2rem;
    background-color: #FFF;
    color: #000;
    font-family: "Roboto";
}

.cardPlayer {
    display: inline-block;
    background-color: #000;
    color: #FFF;
    text-shadow: 0 0 10px #FFF;
    border-radius: .4rem;
    border: 3px solid #000;
    max-width: 500px;
    min-width: 500px;
    text-align: center;
}

.information {
    text-align: center;
    font-size: 2rem;
    background-color: #bdbdbd;
    padding: 1.2rem;
    color: #ffe100;
    font-weight: bold;
    font-family: "Roboto";
    text-shadow: 0 0 5px #000000;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
}

.information:hover {
    cursor: pointer;
    background-color: #ffe100;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
}

@media screen and (max-height: 768px) {
    .select-menu {
        margin-top: 10rem;
        display: flex;
        flex-direction: column;
        gap: .8rem;
    }

    .container-players {
        border: none;
    }

    body {
        overflow-y: auto;
    }
}

.container-atletas {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin: 0 auto;
    overflow-x: auto;
}

@media screen and (min-width: 768px) {
    .container-atletas {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {
    .container-atletas {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1300px) {
    .container-atletas {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1301px) {
    .container-atletas {
        grid-template-columns: repeat(5, 1fr);
    }
}