* {
    font-family: "Open Sans", sans-serif;
}

header {
    background: url('../image/black_background.svg') center / cover no-repeat;
    flex-direction: column;
}

.hidden {
    display: none !important;
    opacity: 0 !important;
}

.disabled-pointers {
    pointer-events: none;
}

.logos {
    position: absolute;
    flex-direction: column;
    width:40%;
    height: 80%;
    left: 0;
    top: 0;
    gap: 20px;
    align-items: baseline !important;
    padding-inline:60px;
}

.logos > img {
    width: 300px;
    height: 160px;
}

.logos > p {
    font-size: 1.4em;
    color: var(--branco);
    font-weight: bold;
}

.courses {
    width: 100%;
    height: 20%;
    position: absolute;
    justify-content: left !important;
    bottom: 0;
    left: 0;
    background-color: #00000069;
}

.courses > button {
    width: auto;
    height: 40%;
    margin-inline: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.courses > button > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Certificados */

.certificados {
    width: 100%;
    height: 65%;
    flex-direction: row;
    position: relative;
    left: 0;
    top: -4vh;
}

.certificado {
    width: 60%;
    height: 100%;
    position: relative;
}

.certificado > img {
    width: 80%;
    object-fit: contain;
    height: 90%;
}

.iconCertificado {
    width: 100px !important;
    height: 100px !important;
    position: absolute;
    left: 30px;
    bottom: 20px;
    object-fit: cover;
}

.backContent {
    position: absolute;
    top: 2vh;
    left: 2vw;
    font-size: 1.8em;
    color: var(--branco);
    background-color: transparent;
    z-index: 90;
    cursor: pointer;
}

.backContent > span, .backProjects > span {
    font-size: 1.2em;
}

.nextCertificados, .backCertificados {
    width: 20%;
    height: 100%;
    position: relative;
}

.nextCertificados > button, .backCertificados > button {
    background-color: transparent;
    border: none;
}

.scroll {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 4vh;
    right: 2vw;
}

.viewProject {
    display: none !important;
}

.allCertificados {
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.allLogos {
    width: 20%;
    height: 100%;
    flex-direction: column;
}

.allLogos > img {
    margin-block: 10px;
    width: auto;
    height: 30%;
    object-fit: cover;
}

.certifica {
    width: 80%;
    height: 100%;
    gap: 40px;
}

.certifica > img {
    width: 150px;
    height: 80%;
}

/* Projetos Github */

.projects {
    width: 100%;
    height: 85%;
    align-items: baseline !important;
    position: absolute;
    bottom: 0;
    left: 0;
    flex-direction: column;
}

.backProjects {
    font-size: 1.8em;
    color: var(--branco);
    background-color: transparent;
    padding-inline: 40px;
    margin-block: 10px;
}

.titleGit {
    height: 20%;
    width: 100%;
    justify-content: left !important;
    gap: 30px;
}

.titleGit > img {
    margin-left: 40px;
    width: 80px;
    height: 80px;
}

.titleGit > h1 {
    font-size: 1.8em;
    color: var(--branco);
}

.allProjects {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: 80%;
    padding: 10px 40px;
    gap: 10px;
    overflow-y: auto !important;
}

.project {
    background: #0b0b0b;
    width:80%;
    height: 50vh;
    border-radius: 20px;
    flex-direction: column;
    padding: 20px 40px;
    align-items: baseline !important;
    justify-content: baseline !important;
    gap: 20px;
}

.project > h1 {
    font-size: 1.8em;
    color: var(--branco);
    height: 20%;
}

.project > p {
    width: 100%;
    height: 40%;
    font-size: 1.2em;
    color: var(--branco);
    font-weight: bold;
    overflow: hidden;
}

.contentProject {
    width: 100%;
    height: 20%;
    position: relative;
    bottom: 0;
}

.contentLg {
    position: absolute;
    left: 0;
    gap: 10px;
    font-size: 1em;
    font-weight: bold;
    color: var(--branco);
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-direction: row;
}

.circle.html {
    background-color: var(--html);
}

.circle.js {
    background-color: var(--js);
}

.circle.css {
    background-color: var(--css);
}

.contentProject > button {
    width: 200px;
    height: 80%;
    border-radius: 20px;
    background-color: var(--preto);
    position: absolute;
    right: 0;
}

.contentProject > button > a {
    font-size: 1.2em;
    color: var(--branco);
    text-decoration: none;
}