/* ================ 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, video {
    -webkit-user-drag: none;
}

iframe {
    /* border: none; */
}




/* ================ Global ================ */
h1, h2, h3 {
    color: white;
    font-family: system-ui;
}

li, p, a {
    color: white;
    font-family: system-ui;
    font-weight: 500;
}

h2 a {
    /* color:       inherit; */
    /* font-weight: inherit; */
}

button {
    /* cursor: pointer; */
}

img, video {
    max-width: 100%;
}




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

body {
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(45deg, hsl(280, 61%, 6%), hsl(280, 61%, 11%));
}




/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;

    /* background: darkmagenta; */
    /* background: darkorchid;  */
    /* background: darkviolet; */
    /* background: purple; */
    /* background-color: blueviolet; */
    /* background-color: indigo; */
    /* background-color: mediumpurple; */
    /* background-color: mediumorchid; */
    /* background-color: mediumturquoise; */
    /* background: linear-gradient(hsl(280, 61%, 50%), hsl(280, 61%, 40%)); */
    background: linear-gradient(hsl(280, 61%, 50%), hsl(280, 61%, 35%));
    box-shadow: hsl(0, 0%, 0%, 22%) 0 0 30px;
}

header a {
    /* overflow: hidden; */
    /* white-space: nowrap; */

    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* color: white; */
    margin-top: -5px;
    text-shadow: hsl(0, 0%, 0%, 20%) 0 0 15px;
}

header hr {
    /* height: 1px; */
    /* background: white; */
}



/* ================ Navbar ================ */
nav {
    /* position: sticky; */
    /* top: 0; */
    /* z-index: 2; */
    /* background: hsl(0, 0%, 98%); */
    /* background: linear-gradient(to right, hsl(0, 0%, 98%), hsl(0, 0%, 100%)); */
    /* box-shadow: hsl(0, 0%, 0%, 4%) 0 5px 5px; */
}

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: 13px; */
    /* font-weight: 500; */
}

nav a:hover {
    /* color: darkgreen; */
}



/* ================ Carrousel ================ */
.carrousel {
    /* position: fixed; */
    /* z-index: 2; */
    /* top: 50%; */

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

    /* color: white; */
    /* background: hsl(160, 75%, 33%); */
    /* box-shadow: rgba(0,0,0, 25%) 0 0 8px; */
}

.carrousel:hover {
    /* background: hsl(160, 100%, 35%); */
}

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




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




/* ================ Sections ================ */
section {
    overflow: hidden;
    /* border-radius: 8px; */
    border-top-left-radius:  8px;
    border-top-right-radius: 8px;
    
    /* background: white; */
    /* background: hsl(0, 0%, 95%); */
    background: linear-gradient(45deg, hsl(0, 0%, 100%, 10%), hsl(0, 0%, 100%, 1%));
    box-shadow: rgb(0,0,0, 10%) 0 0 20px;
}

section h2, section h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    padding-top:    12px;
    /* padding-left:   12px; */
    padding-bottom: 12px;
    /* height: 35px; */
    text-shadow: hsl(0, 0%, 0%, 18%) 0 0 15px;
}




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



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

/* ================ boards ================ */
.boards {
    margin-bottom: 50px;
}


.boards ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    column-gap: 12px;
    row-gap:    18px;
}


.boards a {
    overflow: hidden;
    background: black;
    border-radius: 5px;
    box-shadow: hsl(0, 0%, 0%, 40%) 0 0 8px;
    transition: 80ms;
}

.boards a:hover {
    box-shadow: hsl(0, 0%, 100%, 5%) 0 0 8px;
}

.boards a:hover img {
    filter: brightness(1.13);
}

.boards a:hover p {
    color: hsl(51, 90%, 50%);
}



.boards img {
    transition: 80ms;
}

.boards p {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    margin-top: -4px;
    height: 30px;
    /* background: linear-gradient(66deg, black, hsl(0, 0%, 8%)); */
    background: linear-gradient(15deg, hsl(280, 61%, 2%), hsl(280, 20%, 12%));
    transition: 80ms;
}







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

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

    /* border-radius: 15px; */
    /* width:  30px; */
    /* height: 30px; */

    /* background: hsl(160, 75%, 33%); */
    /* box-shadow: rgba(0,0,0, 25%) 0 0 8px; */
}

#gohead:hover {
    /* background: hsl(160, 100%, 35%); */
}

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



/* ================ Footer ================ */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(hsl(240, 100%, 33%), hsl(240, 100%, 25%)); */
    background: linear-gradient(hsl(280, 61%, 45%), hsl(280, 61%, 25%));
    height: 90px;
    box-shadow: hsl(0, 0%, 0%, 40%) 0 0 30px;
}

footer h1 {
    /* color: white; */
    /* text-shadow: hsl(0, 0%, 0%, 50%) 0 0 12px; */
    /* margin-top: -5px; */
    text-shadow: hsl(0, 0%, 0%, 25%) 0 0 15px;
}