body {
    background-color: #b69e6e;

    scroll-behavior: smooth;
}

/*:root {
  --primary-color: #0a0a0a;
  --secondary-color: #ffffff;
  --overlay-color: rgba(0, 0, 0, 0.4);
  --hover-color: #ff69b4;
  --transition: 0.3s ease;
  --cursor-color: #cdb4db;
  --cursor-img: url(img/anomaly.png) 16 16, auto;
}
/* Cursor 
.custom-cursor-hover, .project-row, .blog-row, .grid-item {
  cursor: var(--cursor-img);
}
*/

/*IMAGE GALLERY*/

.grid-container {
    z-index: 1;
    width: 43vw;
    justify-self: center;
    background-color: #b69e6e;
    padding: 6px;
    transform: translateY(-10px);
}

.card {
    aspect-ratio: 1 / 1; /* Forces perfect square */
    min-width: 15px; /* Minimum size */
    min-height: 15px;
    border-radius: 7px;
    background-color: #ffe4ba;
    text-align-last: center;
    transition: transform 0.3s;
}
.card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 246, 231, 0.54);
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-content: center;
    margin-bottom: -10px;
}

/*LIGHTBOX AKA BIG IMAGES WHITHOUT USING JS BTW*/

.lightbox a {
    text-decoration: none;
    font-family: Impact ;
    cursor: pointer;
}
.lightbox {
    background: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    z-index: 1000;
}

.lightbox:target {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
}

.lightbox img {
    border-radius: 1em;
    display: block;
    margin: auto;
    max-height: 80vh;
    max-width: 90vh;
}

.lightbox .close {
    color: #fff;
    font-size: 4em;
    font-weight: bold;
    height: 1em;
    position: fixed;
    right: 0;
    top: 0;
    width: 1em;
    z-index: 1001;
    cursor: pointer;
}

.lightbox p {
    font-size: 2em;
    text-align: center;
    font-weight: 500;
    color: #fff0d8;
    font-family: franklin Gothic;
}

/*VIDEO AND TEXT*/

.wrapperVid {
    /*whole index flexbox*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #b69e6e;
    justify-self: center;
    width: 43vw;
    margin-top: 0;
}
.wrapperVid a {
    margin-top:20px;
    text-decoration: none;
    color: #514a3b;
    background-color: antiquewhite;
    padding: 3px;
    border-radius: 6px;
    font-family: Impact;
    text-align: center;
}
/*BACKGROUND*/
.LeftSide {
    position: fixed;
    height: 100%;
    z-index: -1;
    top: 0%;
    left: 0%;
}

.RightSide {
    position: fixed;
    height: 106%;
    z-index: -1;
    top: 0%;
    right: 0%;
}