.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items:flex-end;
    padding: 10px 40px;
    background: url("./assets/sbar.svg") repeat-x;
    z-index: 2;
}
.topbar > * {
    transform: translateY(-10px);
}

@font-face {
    font-family: "DELTARUNE";
    src: url("./assets/DELTARUNE.woff");
}

#deltamod2 {
    filter: saturate(20%);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


small {
    font-size: 0.8em;
    color: gray;
    font-style: italic;
}
.viewport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;

    overflow-y: scroll;

    perspective: 1000px;
}

/* Hide scrollbar for WebKit browsers */
.viewport::-webkit-scrollbar {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 5px;
}
.projectCard > .content {
    height: 300px;
}

.projectCard {
    width: 250px;
    height: 350px;
    background: linear-gradient(180deg,rgba(17, 17, 17, 1) 0%, rgb(17, 17, 17) 92%);
    border: 2px solid rgb(30, 30, 30);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    user-select: none;
}

.projectCard:hover {
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: 2px solid rgb(255, 255, 255);
}

body {
    background-color: black;
    font-family: 'DELTARUNE', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}