:root {
    --primary-color: rgb(0,0,0);
    --secondary-color: rgb(100,100,100);
    --red-color: #db545a;
    --purple-color: #AC1B8E;
    --offset: 10px;
    --animation-delay: 0.2s;
}

html {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Lexend', serif;
    margin: 0px;
}

.drift-right {
    transition: all 0.4s ease-in-out;
    transform: translateX(0px);
}

.drift-right:hover {
    transition: all 0.4s ease-in-out;
    transform: translateX(10px);
}

.drift-left {
    transition: all 0.4s ease-in-out;
    transform: translateX(0px);
}

.drift-left:hover {
    transition: all 0.4s ease-in-out;
    transform: translateX(-10px);
}

.drift-up {
    transition: all 0.4s ease-in-out;
    transform: translateY(0px);
}

.drift-up:hover {
    transition: all 0.4s ease-in-out;
    transform: translateY(-10px);
}

.widen {
    transition: all 0.4s ease-in-out;
    transform: rotate(0deg) scale(1);
}

.widen:hover {
    transition: all 0.4s ease-in-out;
    transform: rotate(-5deg) scale(1.1);
}

.strip {
    background-color: var(--red-color);
    color: white;
    text-align: center;
    padding: 0px;
    height: 20px;
    font-size: 15px;
    margin: 0px;
}

.black {
    color: black;
    background-color: black;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: var(--secondary-color);
}

/* NAVBAR */

nav {
    height: 70px;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navleft {
    float: left;
}

.navright {
    float: right;
}

.mainname {
    all: unset;
    font-family: 'Oswald', serif;
    font-weight: bold;
    font-size: 50px;
    transition: all 0.4s ease-in-out;
    margin-left: 0px;
}

.mainname:hover {
    margin-left: var(--offset);
}

nav img {
    height: 50px;
    padding-right: 20px;
}

.navright a {
    all: unset;
    color: var(--secondary-color);
    padding-right: 20px;
}

.navright a:hover {
    all: unset;
    color: var(--primary-color);
    cursor: pointer;
    padding-right: 20px;
}

/* SINGLE TEXT */

.bckg-image {
    background-image: url('images/disc_hdd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.bckg-image h1 {
    padding: 10px;
    font-size: 50px;
    background-color: black;
    transition: all 0.4s ease-in-out;
    border-radius: 15px;
    transform: rotate(10deg);
}

.bckg-image h1:hover {
    transform: rotate(5deg);
}

.bckg-image p {
    padding: 10px;
    width: 80%;
    font-size: 20px;
    background-color: black;
    border-radius: 15px;
    text-align: center;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.dark-button {
    all: unset;
    padding: 15px;
    border-radius: 25px;
    background-color: black;
    color: white;
}

.dark-button:hover {
    cursor: pointer;
}

.centered-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.centered-text h2 {
    color: var(--red-color);
    margin: 0px;
}

.centered-text h1 {
    font-size: 50px;
    margin-top: 0px;
}

.centered-text p {
    margin: 0px;
    width: 70%;
    text-align: center;
}

.centered-text img {
    margin-top: 50px;
    width: 250px;
}

.centered-text input {
    all: unset;
    width: 300px;
    padding: 10px;
    color: var(--primary-color);
    border-bottom: var(--secondary-color) solid 1px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.centered-text input:focus {
    width: 350px;
}

.centered-text label {
    all: unset;
    font-family: 'Oswald', serif;
    font-size: 25px;
}

.centered-text button {
    all: unset;
    padding: 15px;
    border-radius: 25px;
    background-color: black;
    color: white;
}

.centered-text button:hover {
    cursor: pointer;
}

/* DASHBOARD */

.colored-shade-parent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.colored-shade {
    width: 500px;
    background: linear-gradient(var(--red-color), var(--purple-color));
    border-radius: 50px;
    padding: 50px;
    padding-top: 25px;
    color:white;
}

.colored-shade h2 {
    text-align: center;
    background-color: black;
    padding: 10px;
    border-radius: 15px;
    font-size: 25px;
    transition: all 0.4s ease-in-out;
    width: 250px;
    transform: rotate(0deg);
}

.colored-shade h2:hover {
    transition: all 0.4s ease-in-out;
    transform: rotate(-3deg);
}

.table-parent {
    margin-left: 50px;
    margin-right: 50px;
    width: 100%;
    font-size: 25px;
}

/* ATTACHMENTS */

.attachment-grandfather {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.attachment {
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid black 1px;
}

.attachment button {
    all: unset;
    transition: all 0.4s ease-in-out;
    display: grid;
    grid-template-columns: 2;
    grid-template-rows: 1;
    border-radius: 25px;
    width: 100%;
    color: black;
    transform: translateX(0px);
}

.attachment button:hover {
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    transform: translateX(10px);
}

.attachment img {
    width: 100px;
    height: 100px;
    margin: 20px;
    grid-row: 1;
    grid-column: 1;
}

.attachment div {
    grid-row: 1;
    grid-column: 2;
    width: 260px;
}

.attachment div p {
    font-size: 15px;
    margin-top: 5px;
}

.attachment div h2 {
    font-size: 25px;
    background-color: black;
    color: white;
    height: 30px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 0px;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SEARCH BOX */
.searchbox {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.searchbox input {
    width: 300px;
    border-radius: 20px;
    text-align: center;
    font-size: 20px;
    font-family: 'Lexend', serif;
    height: 30px;
    border-color: black;
    border-style: solid;
    border-width: 2px;
    transition: all 0.4s ease-in-out;
}

.searchbox input:focus {
    width: 350px;
    transition: all 0.4s ease-in-out;
}

/* DOUBLED TEXT */

.divided {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    margin: 25px;
}

.divided-left {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divided-right {
    grid-row: 1;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NON-FOUND PAGE */
.fullimg {
    width: 50%;
}

.quote {
    border-left: var(--red-color) solid 5px;
    padding-left: 20px;
}

/* GUIDE */
.tutorial-block {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.tutorial-block h1 {
    font-size: 40px;
}

code {
    all: unset;
    background-color: rgb(225, 225, 225);
    border-radius: 5px;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
}

/* NOT IMPLEMENTED */

.non-implemented {
    background-color: rgb(243, 239, 171);
    border-left: rgb(238, 210, 70) solid 10px;
    padding: 5px;
    padding-left: 25px;
    margin-top: 0px;
}

.non-implemented-warn {
    background-color: rgb(243, 171, 171);
    border-left: rgb(238, 70, 70) solid 10px;
    margin-bottom: 0px;
}