:root {
    /* Primary Palette */
    --P-Red : #ce1126;
    --P-Pink: #ffa0cc;
    --P-White: #ffffff;
    --P-Black: #000000;

    /* Secondary Palette */
    --Pastel-Pink: #ffa0cc;
    --nd-Blue: #a5bae0;
    --nd-Lila: #e29ed6;
    --nd-Yellow: #f2ef87;
    --nd-Green: #b5e8bf;

    /* Spicy Palette */
    --Red-Intense: #ce1126;
    --S-Orange: #ef6b00;
    --S-Yellow: #fffb2d;
    --S-Pink: #ea0f6b;
    --S-Purple: #70147a;

    /* lau-s Palette */
    --bg-color: #ffffff;
    --text-color: #000000;

    --primary-color: pink;
    --ft: lightblue;
    --A-C: #82c8e5;

    --idk: darkblue;
    --lau-fav: orange;
}
.flex-container{
    display: flex;
    gap: 1em;

}.grid-container{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1em;
}
.item{
    background-color: var(--lau-fav);
    padding: 1em;
    color: wheat;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 15px;
}
.itfo{
    background-color: var(--A-C);
    padding: 1em;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 1em;
}
.grid2{
    width: 100%;
    display: grid;
    
}
.item2{
    height: 250px;
    background-color: var(--primary-color);
    text-align: center;
    align-content: center;
    font-size: 2rem;
}
.logo{
    max-width: 7%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background-color: red;
}
::-webkit-scrollbar{
    display: none;
}
.hover-box {
    color: black;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer; 
}

.hover-box:hover {
    background-color: var(--S-Orange);
    color: white;
    transform: scale(1.05);
}
.nav-a{
    padding: 1em 1.5em;
    color: var(--text-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.nav-a:hover{
    color: white;
    background-color: var(--nd-Blue);
}
.img {
    display: block;
    margin-left: auto;
    margin-right: auto;

    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.boxy{
    
}
/* .boxy{
    display: grid;
    grid-template-columns: 100px auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "1 2 5 6"
        "3 4 7 8";
} */

#CC-logo{
    margin-top: 1.75px;
    margin-left: 35px;
    max-width: 100%;
    height: 50px;
    aspect-ratio: 5 / 1;
    object-fit: contain;
}

body{
    min-height: 100vh;
    margin: 0;
    color: var(--text-color);
    font-family: 'gill sans','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    display: grid;
    grid-template-columns: 300px auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "navbar navbar navbar"
        "main main main"
        "footer footer footer";
}
form{
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
button{
    padding: 1em 3em;
    font-family: poppins, sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    color: white;
    background: linear-gradient(to right, pink, lightblue);
    position: relative;
    z-index: 0;
    cursor: pointer;
}
button::after{
    content: '';
    background: linear-gradient(to right, lightblue, pink);
    height: 100%;
    width: 0px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 550ms ease-in-out;
}
button:hover::after{
    width: 100%;
}
button:hover{
    color: black;
}

a{
    color: var(--text-color);
    text-decoration: none;
}
nav{
    grid-area: navbar;
    background-color: var(--Pastel-Pink);
}
nav ul{
    list-style: none;
    display: flex;
    padding: 0;
}
nav li:first-child{
    margin-right: auto;
}
nav a{
    display: flex;

    text-decoration: none;
    color: var(--text-color);
}
aside{
    grid-area: sidebar;
    padding: 1.5em;
    background-color: var(--idk);
}
aside a{
    color: white;
    text-decoration: none;
}
main{
    grid-area: main;
    padding: 1.5em;
}
p{
    text-align: center;
}
p button{
    text-align: center;
    margin-top: 4em;

}
footer{
    justify-content: center;
    align-content: center;
    text-align: center; 
    grid-area: footer;
}
footer a{
    padding: 1em;
}

