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

html,
body
{
    overflow: hidden;
}

.experience
{
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.credits
{
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    text-align: right;
    font-family: 'Roboto', sans-serif;
}

.credits a
{
    color: inherit;
}

.screen-modal
{
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.screen-modal[hidden]
{
    display: none;
}

.screen-modal:not([hidden])
{
    pointer-events: auto;
}

.screen-modal-overlay
{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.screen-modal-content
{
    position: relative;
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    font-family: 'Roboto', sans-serif;
    padding: 2rem;
    letter-spacing: 0.05em;
}

/*# sourceMappingURL=main.css.map*/