@font-face {
    font-family: Nunito;
    src: url("outros/Nunito.ttf");
}

* {
    box-sizing: border-box;
}

body {
    font-family: Nunito;
}

.icone {
    width: 25px;
}

#fundoTitulo {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #007a55 0%, #f0b100 50%, #2b7fff 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

#titulo {
    position: absolute;
    left: 10px;
    top: 20px;
    width: calc(100% - 10px);
    color: white;
    font-size: large;
    font-weight: bold;
    line-height: 25px;
}

#lista {
    position: absolute;
    top: 15px;
    left: calc(100% - 40px);
    width: 30px;
    height: 30px;
}

.jogos {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

.data {
    display: grid;
    grid-template-columns: auto;
    font-size: small;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.jogo {
    display: grid;
    grid-template-columns: 1fr 25px 20px 10px 20px 25px 1fr;
    font-size: small;
    align-items: center;
    margin-top: 20px;
}

.divisao {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1px;
    background: #cccccc; 
    margin-top: 20px;
}