
body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #FFF;
}

section.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90%;
}

section.hero h2 {
    margin: 30px auto;
    text-align: center;
    font-weight: normal;
}

div img.logo-hero {
    display: block;
    max-width: 200px;
    width: 200px;
    height: auto;
    margin: 50px auto;
}

ul.social {
    margin-top: 20svh;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
ul.social li {
    list-style: none;
    padding: 10px;
    cursor: pointer;
}

footer {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}
footer a:hover {
    color: rgb(177, 177, 177);
    transition: all 0.3s;
}