* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-cinza1: rgb(56, 56, 56);
    --cor-cinza2: rgb(200, 30, 30);
}

@font-face {
    font-family: "denton";
    src: url(./assets/fonts/denton.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0 auto;
    line-height: 1.5;
    color: aliceblue;
    background: linear-gradient(45deg, rgb(26, 26, 26, 0.96), rgb(26, 26, 26, 0.96)), url(./assets/nodebg.png);
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}

a {
    color: aliceblue;
    text-decoration: none;
}


.imagem-header-fundo {
    background-image: url(./assets/houpless.png);
    background-size: cover;
    background-position: center;
    max-height: 100%;
    min-height: 400px;
    max-width: 100%;
    min-width: 200px;
}

.foto-perfil {
    display: flex;
    justify-content: center;
}

.foto-perfil img {
    width: 200px;
    margin-top: 50px;
    clip-path: polygon(25% 9%, 75% 9%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.cabecalho-perfil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;

    text-align: center;
}

.cabecalho-perfil h1 {
    font-family: denton, Geneva, Tahoma, sans-serif;
    font-size: 40px;
    letter-spacing: 5px;
}

span {
    font-weight: bold;
}

.cabecalho-perfil ul li,
.rs ul li {
    list-style: none;
}

.cabecalho-perfil-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rs {
    display: flex;
    flex-direction: column;
    margin: 15px auto;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    max-width: 950px;
    background-color: var(--cor-cinza1);
    border-radius: 5px;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.link-so {
    font-size: 50px;
    border-radius: 30px;
    transition: 0.2s;
}

.link-so a {
    padding: 50px;
}

.link-so:hover {
    background: rgb(134, 134, 134);
    scale: 120%;
}

.rs-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    background: #035AA6;
    width: 950px;
    border-radius: 5px;
}

.rs-cards {
    display: flex;
    flex-direction: row;
    width: 950px;
    justify-content: space-between;
    margin: 20px auto;
    gap: 20px;
}

.card {
    width: 100%;
    background-color: #035AA6;
    text-align: center;
    transition: 0.2s;
    border-radius: 5px;
    transition: 0.2s;
}

.card i {
    font-size: 50px;
}

.card a {
    display: block;
    padding: 10px
}

.card:hover {
    background: #366a97;
    border-radius: 30px;
    scale: 110%;
}

.rs h3,
.portfolios h3,
.rs-box h4 {
    font-size: 30px;
    padding-bottom: 30px;
    font-style: italic;
    font-weight: 800;
}

.portfolios {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    margin: 20px auto;
    background-color: #A60303;
    -clip-path: polygon(5% 0, 100% 0, 100% 85%, 95% 100%, 0 100%, 0 15%);
    max-width: 950px;
    border-radius: 5px;
}

.card-portfolios {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.card-port {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #A60303;
    border-radius: 30px;
    transition: 0.2s;
}

.card-port a {
    font-size: 50px;
    padding: 10px;
}

.card-port h4 {
    font-size: 20px;
    list-style: none;
}

.card-port:hover {
    background-color: #a83030;
    scale: 120%;
}