:root {
    --primary-color: #f8f8f8;
    --complimentary-color: #222222;   /* These get updated in js */
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('static/BeVietnamPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('static/BeVietnamPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('static/BeVietnamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

a span {
    color: var(--complimentary-color);
}

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

#ball span {
    will-change: transform;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: none;
}

@media (hover: none) and (pointer: coarse) {
    html,
    body {
        position: fixed;
        inset: 0;
        overflow: hidden;
        overscroll-behavior: none;
    }
}

body {
    background-color: var(--primary-color);
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
    color: var(--complimentary-color);
    display:flex;
    justify-content: center; 
    font-size: clamp(30px, 2.5vw, 35px);

}

#main-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    max-width: 1000px;
    margin-top: 15px;
    flex-wrap: wrap;    
    align-content: flex-start;
}

.info-container {
    width: 50%;
    min-width: 400px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title {
    font-weight: bolder;
}

.text-physics {
    visibility: hidden;
}

.physics-layer {
    inset: 0;
    position: fixed;
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
    pointer-events: none;
}

.physics-layer a {
    pointer-events: auto;
}

span {
    user-select: none;
    -webkit-user-select: none;
}

@media (max-width: 480px) {
    .info-container {
        width: 100%;
        min-width: 0px;
        min-height: unset;
        height: auto;

    }

}