@font-face {
    font-family: 'Gotham-Black';
    src: url(fonts/Gotham-Black.otf);
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url(fonts/Gotham-Medium.otf);
}

* {
    font-size: 62, 5%;
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: "Gotham-Medium";

    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-color: #fbfaff;
    display: flex;
    justify-content: center;
}

main {
    width: 90%;
    margin: 0 0 30px 0;
    height: auto;
    background-color: rgba(255, 255, 255, 0.9);
    /* -webkit-box-shadow: 0px 5px 15px 8px #e4e7fb;
    box-shadow: 0px 5px 15px 8px #e4e7fb; */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5rem;
}

.bg-img {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url('imgs/bg.jpg');
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw; 
    height: 100vh; 
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 20px;
    box-sizing: border-box;

}

.topo{
    width: 100%;
    display: flex;
    margin: 25px;
    align-items: center;
    justify-content: center;
}
.topo img{
    width: 65%;
    max-width: 350px;
}

.bottom{
    display: flex;
    margin: 25px;
    align-items: center;
    justify-content: center;
}
.bottom img{
    max-width: 45%;
}

#header {
    font-family: "Gotham-Black";
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2.5rem 2rem;
}

#header h1 {
    text-align: center;
    font-size: 40px;
    color: #141a39;
    text-transform: uppercase;
    cursor: default;
}

#header h2 {
    text-align: center;
    font-size: 20px;
    color: #141a39;
    text-transform: uppercase;
    cursor: default;
}

#usersTable{
    width: 100%;
    position: relative;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: #141a39;
    cursor: default;
    margin: 0 0 30px 0;
}

thead{
    font-family: 'Gotham-Black';
}

td {
    margin: 0 auto;
    font-size: 1.4rem;
    padding: 5px;
    position: relative;
    text-align: center;
}

.number {
    font-family: "Gotham-Black";
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.primeiro{
    background-color: rgba(218, 165, 32, 0.25);
}

.segundo{
    background-color: rgba(192, 192, 192, 0.25);
}

.terceiro{
    background-color: rgba(205, 127, 50, 0.25);
}


.gold{
    height: 4rem;
}

.other{
    height: 2.5rem;
}

@media (max-width: 740px) {
    
    #header h1{
        font-size: 30px;
    }

    * {
    font-size: 60%;
    }
}

@media (max-width: 600px) {

    #header h1{
        font-size: 20px;
    }
}


@media (max-width: 500px) {

    * {
    font-size: 40%;
    }
}

@media (max-width: 390px) {
    * {
    font-size: 25%;
    }

    #header h1{
        font-size: 15px;
    }
}