/* Fonte bonita do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #111;
    color: white;
}

/* overlay para deixar mais bonito */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* deixa mais escuro */
    backdrop-filter: blur(4px); /* blur bonitinho */
    z-index: -1;
}

/* TITULO */
.title {
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 40px;
    margin-top: 20px;
}

/* DESCRIÇÃO NO RODAPÉ */
.description {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #ddd;
    font-size: 18px;
}

/* BOTÕES */
.nav-buttons {
    margin-top: 40px;
    text-align: center;
}

.nav-buttons a button {
    font-size: 22px;
    background-color: #202027;
    padding: 12px 25px;
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin: 10px;
    transition: 0.2s;
}

.nav-buttons a button:hover {
    background-color: #202027;
    transform: scale(1.07);
}

.about {
    color: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.corner-img {
    position: fixed;
    width: 100px; /* tamanho */
    bottom: 10px; /* distância da borda de baixo */
    left: 10px; /* distância da borda direita */

}