@import url('https://fonts.googleapis.com/css2?family=Gayathri:wght@100;700&display=swap');

:root {
    --cor-primaria: #116534;
    --cor-secundaria: #404040;
    --cor-terciaria: #ffffff;
    --cor-link-hover: #116534;

    --fonte: 'Gayathri', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cor-primaria);
    height: 100%;
    background-image: url("./bg.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10rem;
}

.img {
    width: 15rem;
    height: 15rem;
}

.img:hover {
    width: 15.5rem;
    height: 15.5rem;
    transition: 0.3s;
    filter: brightness(50%) saturate(50%)
}

h1 {
    font-family: var(--fonte);
    font-weight: 100;
    color: var(--cor-terciaria);
}

p {
    font-family: (var(--fonte));
    color: var(--cor-terciaria);
    font-size: 1rem;
}
