* {
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: #000;
    background-image: url('/static/assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: auto;
    color: white;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    font-size: larger;
    -webkit-font-smoothing: antialiased;
}

a {
    color: white;
}

.base-footer {
    display: flex;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.048);
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.base-footer p {
    margin-left: auto;
    margin-right: 12px;
}

.base-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.048);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.base-header-nav {
    display: flex;
    gap: 15px;
}

.base-header-nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.base-header-nav-btn:hover {
    font-weight: 700;
}

.container {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 12px;
    padding: 12px;
    border-radius: 12px;
}

.bottom-spacer {
    height: 24px;
    opacity: 0;
    pointer-events: none;
}