@font-face {
    font-family: "Abstract";
    src: url('/fonts/aAbstractGroovy.otf');
}

body {
    background-image: linear-gradient(#95E1D4, #FFFAE7);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin: 0;
    color: gray;
    font-family: Arial, Helvetica, sans-serif;
    cursor: none;
}

.cursor-dot {
width: 5px;
height: 5px;
background-color: rgb(0, 0, 0);
}

.cursor-outline {
width: 30px;
height: 30px;
border: 2px solid hsla(122, 50%, 37%, 0.794);
}

.cursor-dot,
.cursor-outline {
position: fixed;
top: 0;
left: 0;
transform: translate(-50%, -50%);
border-radius: 50%;
z-index: 1;
pointer-events: none;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    opacity: .05;
    z-index: 1000;
    pointer-events: none;
    background: url(../noise.gif);
}

#filters {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #9ce8d5;
}

#filter-select {
    padding: 10px;
    font-size: large;
}

#projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.project {
    position: relative;
    align-items: center;
    height: 300px;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project:hover .project-title {
    opacity: 1;
}