@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    color: burlywood;
    font-size: 1rem;
}

body {
    background: black;
    padding-bottom: 10rem;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.topo {
    margin-top: 0;
    position: fixed;
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgb(31, 31, 31);
    padding: 1rem 0;
    z-index: 1;
}

.topo>img {
    margin-left: 1rem;
}

.siscontrole {
    padding-top: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.siscontrole>h1 {
    font-size: 4rem;
    font-weight: 500;
}

.siscontrole>span {
    margin-top: -1rem;
    font-size: 1rem;
    font-weight: 100;
}

.siscontrole>div {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.siscontrole>div>p.suporte {
    font-size: 1.5rem;
    font-weight: 100;
}

.instituicoes {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 100vw;
}

.instituicoes>a {
    width: 60%;
    cursor: pointer;
    padding-top: .5rem 0 .8rem 0;
    text-align: center;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 1rem;
    text-transform: uppercase;
    transition: 1s ease;
    font-size: 3rem;
}

.menu>li:hover>a,
.instituicoes>a:hover {
    color: rgba(0, 0, 0, .95);
    background-color: burlywood;
}

@media only screen and (max-width: 550px) {
    .topo>img {
        max-width: 80px;
    }

    .siscontrole>h1 {
        font-size: 2rem;
        text-align: center;
        padding-bottom: .5rem;
    }

    .siscontrole>div>p.suporte {
        font-size: 1.2rem;
    }

    .instituicoes>a {
        font-size: 2rem;
        width: 90%;
    }

}