@font-face {
    font-family: 'Comic Sans';
    src: local('Comic Sans MS'), local('Comic Sans'), url('/assets/fonts/ComicSans.woff2') format('woff2'), url('/assets/fonts/ComicSans.woff') format('woff'), url('/assets/fonts/ComicSans.ttf') format('truetype'), url('/assets/fonts/ComicSans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Comic Sans';
    color: white;
}

#bg {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: #d3d3d3;
    z-index: -111;
}

#main {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#troll {
    width: 15vw;
    user-select: none;
}

#infobox {
    position: relative;
    width: 18vw;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px;
    line-height: 22px;
    margin-top: 2.5vh;
    box-sizing: border-box;
}

#infobox.expanded {
    width: 30vw !important;
    height: 30vh !important;
}

#contract-address {
    font-family: monospace;
    font-size: 16px;
}

#expand-button, #collapse-button {
    margin-top: 12px;
    cursor: pointer;
    font-weight: bold;
}

#socials-container {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 36px;
}

#socials {
    display: flex;
    justify-content: space-around;
}

#infobox::after {
    content: '';
    display: block;
    height: 54px;
}