* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: url(/source/img/background.png) center center / cover no-repeat fixed;
    overflow-y: scroll;
}

.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: rgba(0, 0, 0, 0.5);
    height: 100px;
    width: 100vw;
    gap: 15px;
}

.topbar img {
    height: 75px;
    width: 75px;
    user-select: none;
    pointer: none;
}

.topbar p {
    font-size: 30px;
    color: Gold;
    user-select: none;
    pointer: none;
}

.btn {
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1px;
    border: Gold 1px solid;
    padding: 10px;
    color: Gold;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 15px gold;
    cursor: pointer;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    height: 50px;
    width: 100vw;
    background: #00000075;
    font-size: 20px;
    color: Gold;
}

.section {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section p {
    color: Gold;
    font-size: 50px;
}

.section .btn {
    font-size: 50px;
}

.section-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #816d0066;
    border-radius: 5px;
    border: Gold 1px solid; 
    width: 400px;
    height: 200px;
    gap: 20px;
    backdrop-filter: blur(10px);
}