@font-face {
    font-family: 'simpsonfont';
    src: url('../font/simpsonfont.otf') format('otf');
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #211B0E;
}

body.loaded {
    background: #FDD900;
}

.svg-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.svg-wrapper svg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    display: block;
}
