:root {
    --Black:    33, 29, 38;
    --Purple:   184, 130, 251;
    --Blue:     176, 172, 253;
    --Pink:     242, 179, 238;
    --White:    212, 223, 237; 

    --DPurple:  55, 36, 75;
    --DBlue:    62, 61, 92;
    --DPink:    94, 69, 92;
    --DWhite:   89, 91, 97;
}

/*ISSUE CHECKER

main {
    border: solid, red, 1px;
}
header, nav, section, article, footer, aside {
    border: solid, yellow, 1px;
}
figure, details, mark, summary, time {
    border: solid, lime, 1px;
}
img, map, ul, table {
    border: solid, cyan, 1px;
}
h1, h2, h3, h4, h5, h6, p, li, figcaption, th, td {
    border: solid, magenta, 1px;
}*/

body {
    background-color: rgb(var(--DPurple));
    background-image: linear-gradient(rgb(var(--DPurple)) 1px, rgb(var(--White)));
    font-family: "ivysoft-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wght" 300;
    min-height: 95vh;
    max-height: fit-content;
}

.Bordered {
    border-style:solid;
    border-radius: 20px;
    border-width: 4px;
    border-color:rgb(var(--Pink));
}

.Title {
    color:rgb(var(--White));
    font-size: 50px;
    text-shadow: 0 0 20px rgb(var(--Pink));
    padding-top: 20px;
    padding-left: 10px;
    font-variation-settings: "slnt" 0, "wght" 600;
}

.Header {
    text-decoration: underline;
    text-underline-offset: 8px;
    color:rgb(var(--Purple));
    font-variation-settings: "slnt" 0, "wght" 400;
}

.navbar {
    width: 98vw;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 250px;
}

.navbar a {
    float: left;
    padding: 20px;
    color: rgb(var(--DPurple));
    font-variation-settings: "slnt" 0, "wght" 600;
    text-decoration: none;
    font-size: 20px;
    min-width: fit-content;
    width: 10%;
    transition: color 750ms, background-color 1s, font-size 750ms, border 1s;
    height: auto;
    background-color: rgb(var(--Purple));
    border: solid rgb(var(--DPurple)) 3px;
    border-radius: 100px;
    margin-right: 50px;
    text-align: center;
}

.navbar a:hover {
    transition: color 750ms, background-color 1s, font-size 750ms, font-variation-settings 750ms, border 1s;
    background-color: rgb(var(--DPurple));
    color: rgb(var(--Purple));
    border: solid rgb(var(--Purple)) 3px;
    font-variation-settings: "slnt" 100, "wght" 700;
    font-size: 22px;
}

a {
    color:rgb(var(--DBlue));
    height: inherit;
}

p {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 25px;
    color: rgb(var(--Black));
}

::placeholder {
    font-style: italic;
}

ul {
    padding-left: 150px;
}

li {
    color: rgb(var(--Purple));
    text-align: left;
}

.Hidden {
    color: rgb(var(--White));
    text-decoration: none;
}

h2 {
    color: rgb(var(--Purple));
    font-size: 30px;
}

h1, h2, h3, h4, h5, h6 {
    color: rgb(var(--Black));
    text-decoration: underline;
    text-underline-offset: 8px;
}

main {
    padding: 20px;
}

.active {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 5px;
    text-decoration-skip-ink: none;
}

button {
    transition: color 333ms, background-color 500ms, font-size 333ms, border 333ms;
    
    background-color: rgb(var(--Pink));
    border: solid rgb(var(--DPink)) 5px;
    padding: 10px 12px;
    display: inline-block;
    width: fit-content;
    height: min-content;
    font-family: "ivysoft-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wght" 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: rgb(var(--DPink));
}

button:hover {
    transition: color 333ms, background-color 500ms, font-size 333ms, border 333ms;

    border: solid rgb(var(--DPurple)) 5px;
    background-color: rgb(var(--DPurple));
    color: rgb(var(--Purple));
    font-size: 16px;
    color: rgb(var(--Purple));
}

input {
    background-color: rgb(var(--Purple));
    border: solid rgb(var(--DPurple)) 5px;
    padding: 10px 12px;
    display: inline-block;
    width: fit-content;
    height: min-content;
    font-family: "ivysoft-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wght" 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: rgb(var(--DPurple));
}

::placeholder {
    color: rgb(var(--DPurple));
}

span {
    width: fit-content;
}

.grid-container {
    display:grid; 
    grid-template-areas: 'header header header header right right''main main main main right right''main main main main right right'; 
    gap: 10px; 
    margin-top: 50px;
    background-color: rgb(var(--White));
    padding: 7px;
}

.grid-container * {
    color: rgb(var(--White));
}

.grid-container > header {
    background-color: rgb(var(--DWhite));
    text-align: center;
    font-size: 30px;
}
.grid-container > section {
    background-color: rgb(var(--DWhite));
    text-align: center; 
    padding: 10px 0; 
    font-size: 30px;
}
.grid-container > aside {
    background-color: rgb(var(--DWhite));
    text-align: center; 
    padding: 10px 0; 
    font-size: 30px;
}
.grid-container > nav {
    background-color: rgb(var(--DWhite));
    text-align: center; 
    padding: 10px 0; 
    font-size: 30px;
}
.item1 {
    grid-area: header;
}
.item2 {
    grid-area: main; 
}
.item3 {
    grid-area: right; 
    background-color: rgb(var(--DWhite));
}

td, th {
    border: 3px solid rgb(var(--DPink));
    background-color: rgb(var(--Pink));
    color: rgb(var(--DPink));
    text-align: center;
    padding: 8px;
}