.container {
  margin-left: auto;   /* same as mx-auto */
  margin-right: auto;

  max-width: 780px;    /* same as max-w-2xl (~672px) */

  padding-left: 16px;  /* same as px-4 (16px) */
  padding-right: 16px;

  padding-top: 32px;   /* same as py-8 (32px) */
  padding-bottom: 32px;
}
body {
    height: 100vh;
    overflow-x: hidden;
}
div {
    font-family: "Geist";
}
a {
    text-decoration: none;
    color: inherit;
}
a:visited {
    color: white;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}

.linkss {
    padding-top: 14px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

}
.projects {
    margin-top: 14px;
    height: 290px;
    width: 100%;
    display: flex;
    column-gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    anchor-name: --carousel;
    scroll-snap-type: x mandatory;
}
.projects::-webkit-scrollbar {
    display: none;              /* Chrome, Safari */
}
.projects::scroll-button(right), .projects::scroll-button(left) {
    content: '->';
    border: none;
    font-family: 'Geist';
    color: #FFFFFF;
    height: 30px;
    width: 30px;
    background-color: rgb(73, 73, 73);
    border-radius: 15px;
    cursor: pointer;
    position: fixed;
    position-anchor: --carousel;
    position-area: right center;
    translate: -50%;
    transition: opacity 0.2s;
}
.projects::scroll-button(left) {
    content: '<-';
    position-area: left center;
    translate: 50%;
}
.projects::scroll-button(right):active, .projects::scroll-button(left):active {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    border: none;
    opacity: 0.6;
}
.project {
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    flex: 0 0 49%;
    display: flex;
    flex-direction: column;
    border-style: solid;
    border-color: rgba(115, 108, 157, 0.5);
    border-width: 1px;
    transition: opacity 1s, transform 0.7s;
    background: linear-gradient(315deg, rgb(12, 11, 27) 3%, rgb(12, 11, 27) 38%, rgb(80, 80, 90) 68%, rgb(12, 11, 27) 98%);
    animation: gradient 5s linear forwards;

    background-attachment: fixed;
}
.project:hover {
    opacity: 0.9;
}
.project:active {
    -webkit-tap-highlight-color: transparent;
}

.pic {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.project-preview {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    position: relative;
    transition: transform 2s;
}
.project-preview:hover {
    transform: scale(1.05);
}

.tech-used {
    display: flex;
    flex-direction: row;
    column-gap: 2px;
    padding: 1px 1px 1px 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 3px;
    padding-bottom: 3px;
}
.tech-used > img {
    height: 30px;
    width: 30x;
    object-fit: contain;
    object-position: center;
}
#tech, #edu, #cont, #proj, #song, #git{
    font-weight: 600;
}
.descript {
    position: relative;
}

/* .window {
    position: absolute;
    right: 7px;
    top: 12px;
    z-index: 3;
} */
 .window {
    padding-left: 4px;
 }
.window:hover {
    cursor: pointer;
    opacity: 0.7;
}
.window:active {
    opacity: 0.4;
}
.icons3 {
    height: 18px;
    object-fit: cover;
    object-position: center;
    display: inline-block;
}
@media (max-width: 450px) {
    #song {
        margin-top: 20px;
    }
    #proj {
        margin-top: 10px;
    }
    .project {
        border-radius: 20px;
        overflow: hidden;
        scroll-snap-align: start;
        flex: 0 0 100%;
        display: flex;
        flex-direction: column;
        border-style: solid;
        border-color: rgba(115, 108, 157, 0.5);
        border-width: 1px;
        transition: opacity 0.8s;
        cursor: pointer;
    }
    /* body::-webkit-scrollbar {
      -webkit-appearance: auto;
    } */
}

.hide-for-now {
    display: none;
}

body::-webkit-scrollbar {
    display: none; /* Hides the scrollbar visually */
}










body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgb(12, 11, 27) 3%, rgb(12, 11, 27) 38%, rgb(80, 80, 90) 68%, rgb(12, 11, 27) 98%);
    animation: gradient 5s linear forwards;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.wave {
    background: rgba(57, 54, 74, 0.5);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}