body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

a {
    text-decoration: none;
}

main {
    display: flex;
    flex-direction: column;
}

.bg {
    display: flex;
    flex-direction: column;
    background-image: url("/images/main.png");
    background-size: cover;
    background-position: center;
    height: 110vh;
}


.bg div {
    padding: 16px;
}

.header-cntr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.content-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel p {
    margin: 0;
}

.bg-serv {
    background-image: url(/images/servers.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.serv-text {
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 16px;
}

.serv-text h1 {
    font-size: 4em;
    font-weight: bold;
}

.serv-text p {
    text-indent: 5em;
    font-size: 2em;
}

.bg-default {
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 80px 16px 80px;
    background-color: rgba(0, 0, 0, 0.85);
}

.bg-default h2 {
    margin: 1em;
}

.bg-default p {
    margin: 1em 1em 0px 1em;
}

.center-item {
    left: 25%;
}

footer {
    background: linear-gradient(to right, #0A0E11, #0A1E29, #122F3D);
    color: white;
    min-height: 40vh;
    display: flex;
    justify-content: space-between;
}

footer div {
    min-width: 33%;
}

.social-midia {
    display: flex;
    justify-content: end;
    align-items: end;
    max-width: 33%;
}

.about {
    padding: 16px;
    max-width: 33%;
}

.about h1 {
    font-size: 1em;
}

.about p {
    margin: 0;
    text-indent: 5em;
    font-size: 0.8em;
    text-align: justify;
}

.social-midias i {
    margin: 0px 0.1em 0px 0.1em;
    font-size: 2em;
}

.marca {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
}

.icons {
    font-size: 3rem;
    display: flex;
    justify-content: space-between;
    margin: 0px 1em 0px 1em;
}

.instagram {
    color: transparent;
    background: -webkit-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -o-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}

/*animações*/

.content-text {
    opacity: 0;
    animation: fadeIn ease 5s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}