@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    list-style: none;
    font-family: 'Press Start 2P', cursive;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('../img/background.svg');
    background-size: cover;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
  }


.login_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;

}

.login_header img {
    width: 400px;
    margin-bottom: 1em;
}

.login_header h1 {
    color: #333;
    font-size: 1.5em;
}



.login_button {
    display: block;
    background-color: #f1453a;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    max-width: 300px;
    width: 100%;
    padding: 15px;
}

.materias_button {
    display: none;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    max-width: 400px;
    width: 100%;
    padding: 15px;
}

.portugues {
    color: #D95B71;
    margin-bottom: 1rem; 
}

.portugues:hover {
    color: #fff;
    background-color: #d95b71;
}

.matematica {
    color: #2481A6;
}

.matematica:hover {
    color: #fff;
    background-color: #2481A6;
}

#button1 {
    display: block;
}

#button2, #button3 {
    display: none;
}

a {
    text-decoration: none;
}