/* ================ Reset ================ */
* {
    margin: 0;
    padding: 0;
    gap: 0;
    box-sizing: border-box;
    user-select: none;
}

hr {
    border: none;
}

li {
    list-style: none;
}

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

button {
    border: none;
    background: none;
}

img {
    -webkit-user-drag: none;
}




/* ================ Global ================ */
h1, h2, h3 {
    color: rgb(15,15,15);
    font-family: system-ui;
}

li, a, p {
    color: rgb(15,15,15);
    font-family: system-ui;
    font-weight: 500;
}

button {
    cursor: pointer;
    font-family: system-ui;
    font-weight: 500;
    font-size: 16px;
}




/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    /* background: darkblue; */
    background: linear-gradient(rgb(3, 3, 172), rgb(1, 1, 105));
    box-shadow: rgb(0, 0, 0, .50) 0 0 15px;
}

header h1 {
    color: white;
    margin: -10px;
    text-shadow: rgba(0, 0, 0, .25) 0 0 15px;
}



/* ================ Navbar ================ */
nav {
    position: sticky;
    top: 0;
    z-index: 2;
    background: black;
    box-shadow: rgb(0, 0, 0, .12) 0 6px 6px;
}

nav ul {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    max-width:    1080px;
    height:         25px;
    padding-left:   12px;
}

nav a {
    white-space: nowrap;
    color: white;
    margin-right: 12px;
}

nav a:hover {
    color: gold;
}



/* ================ Carrousel ================ */
.carrousel {
    position: fixed;
    top: 50%;

    font-weight: bolder;
    border-radius: 15px;
    width:  30px;
    height: 30px;

    color: white;
    background: rgb(78, 78, 167);
    box-shadow: rgba(0,0,0, 0.12) 0 0 12px;
}

.carrousel:hover {
    background: rgb(43, 43, 161);
}

.carrousel#prev { left:  10px; }
.carrousel#next { right: 10px; }




/* ============================================ */
/* ================ Background ================ */
/* ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: rgb(235,235,235);
}



/* ====================================== */
/* ================ Main ================ */
/* ====================================== */
main {
    margin: auto;
    max-width:    1080px;
    min-height:    100vh;
    padding-top:    25px;
    padding-left:    8px;
    padding-right:   8px;
    padding-bottom: 50px;
}




/* ================ Sections ================ */
section {
    border-radius: 8px;
    background: white;
    /* background: rgb(236, 236, 236); */
    background: linear-gradient(45deg, rgba(255,255,255, 0.85), rgba(255,255,255, 0.33));
    box-shadow: rgba(0, 0, 0, .05) 0 0 15px;
}

section h2, section h3 {
    text-align: center;
    padding-top:    8px;
    padding-bottom: 4px;
    text-shadow: rgba(0, 0, 0, .08) 0 0 13px;
}



/* ================ Containers ================ */
section div, section ul {
    padding-top:    10px;
    padding-left:    8px;
    padding-right:   8px;
    padding-bottom: 20px;
}


/* ========================================= */
/* ================ Customs ================ */
/* ========================================= */

/* ================ Related ================ */
#profiles ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap:    18px;
    column-gap: 10px;
}

#profiles a {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 6px;
}



#profiles a:hover {
    box-shadow: rgb(0, 0, 0, .12) 0 0 13px;
}

#profiles a:hover img {
    filter: brightness(1.08);
}

#profiles a:hover p {
    background: linear-gradient(45deg, rgb(225,225,225), rgb(240,240,240));
}



#profiles img {
    object-fit: cover;
    max-width:  100%;
    height:     100%;
    aspect-ratio: 3/4;
    transition: 75ms;
}

#profiles p {
    white-space: nowrap;
    display: flex;
    align-items: center;
    height:         33px;
    padding-left:   10px;
    /* background: rgb(220,220,220); */
    background: linear-gradient(45deg, rgb(220,220,220), rgb(235,235,235));
    transition: 75ms;
}




/* ======================================== */
/* ================ Footer ================ */
/* ======================================== */

/* ================ Navigation ================ */
#gohead {
    position: fixed;
    bottom: 25px;
    right:  25px;

    border-radius: 15px;
    width:  30px;
    height: 30px;
    background: rgb(53, 53, 155);
    box-shadow: rgba(0,0,0, 0.25) 0 0 12px;
}

#gohead:hover {
    background: rgb(28, 28, 165);
}

#gohead p {
    color: white;
    font-size: 15px;
    margin-top: -5px;
}



/* ================ Footer ================ */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    /* background: darkblue; */
    background: linear-gradient(rgb(3, 3, 172), rgb(1, 1, 105));
    box-shadow: rgb(0, 0, 0, .50) 0 0 15px;
}

footer h1 {
    color: white;
    margin: -10px;
    text-shadow: rgba(0, 0, 0, .25) 0 0 15px;
}
