* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
    font-family: "Comic Relief", system-ui;

}

body {
    background-color: rgba(0, 0, 0, 0.644);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.navegation {
    background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0.74));
    height: 50px;
    border-bottom: solid 1px;
    border-color: #ffffff8f;
    display: flex;
    justify-content: end;
    gap: 12px;


    a {
        color: azure;
        align-items: center;
        display: flex;
        flex-wrap: nowrap;
        margin-right: 15px;
    }

    a:hover {
        color: #9eafd1;
        text-decoration: underline;
    }
}

.lobby {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    background: #000000c2;
    width: 500px;
    height: 300px;
    border-radius: 20px;
    border: solid 2px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: #000000c2 0 0 5px;

    h1 {
        display: flex;
        justify-content: center;
        color: azure;
        margin-top: 2px;
        border-bottom: solid 2px;
        background: #000000ef;
        border-radius: 20px;
    }

    p {
        padding: 10px;
        color: azure;

    }
}

.sobreMim {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    background: #7a7a7ac2;
    width: 700px;
    height: 110px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: #ffffff 0 0 8px;


    p {
        color: azure;
    }
}

.informations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
    align-items: center;
}

.projetos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
    margin: 10px;

    .projeto {
        background: #010e1abb;
        border: solid 2px;
        border-color: azure;
        color: azure;
        padding: 10px;
        display: grid;
        grid-template-rows: 1fr;
        box-shadow: #000000 0 0 8px;
        border-radius: 20px;
        width: 300px;

        button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50%;
            margin: auto;
            height: 50px;
            margin-top: 5px;
            margin-bottom: 5px;
            border-radius: 30px;
            box-shadow: #000000 0 0 8px;
            font-weight: 500;
            font-size: large;
        }

        button:hover {
            background: #9eafd1;
        }

    }

    .projeto:hover {
        box-shadow: #000000 0 0 18px;
    }


}

.expecialidades {
    display: grid;
    grid-template-columns: repeat(6, 200px);
    justify-content: center;
    margin-top: 140px;

}


.contato {
    display: flex;
    justify-content: center;
    background: #000000b0;
    border-top: solid 1px;
    border-color: #ffffff8f;
    box-shadow: #ffffff 0 0 8px;
    position: fixed;
    bottom: 0;
    width: 100vw;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-conteudo {
    background-color: #000000ef;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: #000000c2 0 0 15px;
    position: relative;
    color: azure;
}

.modal-conteudo h2 {
    color: azure;
    margin-bottom: 15px;
    border-bottom: solid 2px;
    border-color: #ffffff8f;
    padding-bottom: 10px;
    text-align: center;
}

.modal-conteudo p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.fechar-modal {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.fechar-modal:hover,
.fechar-modal:focus {
    color: #9eafd1;
    text-decoration: none;
    cursor: pointer;
}

#modal-tecnologias-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tecnologia-logo-item {
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tecnologia-logo-item svg {
    width: 100%;
    height: 100%;
}

#modal-link-projeto {
    margin-top: 20px;
    text-align: center;
    font-size: large;
}