html {
    scrollbar-width: none;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    gap: 20px;
}

body {
    background: repeating-linear-gradient(90deg, #E8AE68, #A57F60);
    backdrop-filter: blur(20px);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

html, body {
    overscroll-behavior: none;
}

body::-webkit-scrollbar {
    display: none;
}

* {
    font-family: JetBrains Mono, ui-serif;
}

header {
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
    opacity: 0.5;
    transition: opacity 0.25s ease-in-out;
}
header:hover{
    opacity: 1;
}
section {
    opacity: 0.5;
    transition: opacity 0.25s ease-in-out;
}
section:hover{
    opacity: 1;
}

ul, li, a {
    text-decoration: none;
    list-style-type: none;
}

a {
    color: #A57F60;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}

a:visited {
    color: #A57F60;
}

a:hover,
a:visited:hover {
    color: #DB5A42;
}

h3 {
    font-size: 1.3rem;
}

hr {
    min-width: 600px;
    margin-top: 15px;
    border: 2px solid;
    border-radius: 10px;
    color: #DB5A42;
}
br {
    content:" ";
    display: block;
    margin-bottom: 10px;
}
/* Bouncing Images */
.floatingLeft,
.floatingRight {
    position: fixed !important;
    width: 288px;
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.floatingLeft {
    top: 0;
    left: 0;
}

.floatingRight {
    bottom: 0;
    right: 0;
}
/* Navbar styles */
.navbar {
    position: relative;
    background-color: #FFD275;
    margin: auto;
    border-radius: 20px;
    padding: 5px 10px;
    width: 800px;
    z-index: 20;
}

.navbar:before {
    content: "";
    position: absolute;
    inset: -5px;
    transform: translate(7px, 7px);
    z-index: -1;
    background: linear-gradient(45deg, #FFD275, #E8AE68);
    filter: blur(15px);
    border-radius: inherit;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Container styles */
.container {
    position: relative;
    width: 800px;
    background-color: #FFD275;
    margin: 30px auto;
    padding: 10px;
    border-radius: 20px;
    z-index: 20;
}

.container:before {
    content: "";
    position: absolute;
    inset: -5px;
    transform: translate(7px, 7px);
    z-index: -1;
    background: linear-gradient(45deg, #FFD275, #E8AE68);
    filter: blur(15px);
    border-radius: inherit;
}

.project {
    background: #E3A587;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top:10px;
}
.project:not:last-child{
    margin-bottom:10px;
}
.project img{
    border-radius: 20px;
    margin-bottom:20px;
    margin-left:auto;
    margin-right: auto;
}
.project h2 {
    font-size: 1.8rem;
    margin-top:0;
    margin-bottom:20px;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 2px solid #A57F60;
}
.project h3{
    margin:0;
    padding-bottom: 3px;
    display: inline-block;
    border-bottom: 2px solid #A57F60;
}
.project h4{
    font-size: 1.2rem;
}
.project hr {
    display: none;
}
.project button{
    background-color: #FFD275;
    border: none;
    border-radius: 5px;
    width: 20%;
}
.project button:hover{
    background-color: #E8AE68;
    transition: background-color 0.25s ease-in-out;
}
.project a{
    font-size: 1.6rem;
}
.tags{
    display: flex;
    flex-direction: row;
}
.tags img{
    border-radius: 0;
}
/* Responsive Design */
@media (max-width: 900px) {
    .navbar, .container {
        width: 90%;
        margin: 30px auto;
    }

    hr {
        min-width: auto;
        width: 90%;
    }

    .floatingLeft, .floatingRight {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 600px) {
    .floatingLeft, .floatingRight {
        width: 150px;
    }

    h3 {
        font-size: 1rem;
    }

    a {
        font-size: 1rem;
    }

    .navbar ul {
        gap: 15px;
    }
}