@font-face {
    font-family: 'NanumGothicCoding';
    src: url('fonts/NanumGothicCoding-Regular.ttf') format('truetype');
}

body {
    min-height: 100vh;
    margin: 0;
    background-image: url(graphics/bg.gif);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    font-family: 'NanumGothicCoding';
    font-size: 21px;
    padding: 20px;
    box-sizing: border-box;
}

main {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.socials {
    user-select: none;
}

.link {
    color: white;
    transition: font-size 1s ease-in-out;
}

.link:hover {
    font-size: 22px;
}

.spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    transition: opacity 5s ease-out;
}

#sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.text {
    margin: 0;
    user-select: none;
}

.logo {
    max-width: 451px;
    max-height: 222px;
    width: 100%;
    height: auto;
    pointer-events: none;
}