body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background-color: #000;
    user-select: none;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-container {
    background-image: url(images/monster-fight-splashscreen-softed.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.versionx-title {
    background-image: url(images/versionx_title.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 512px;
    height: 128px;
    position: absolute;
    top: 64px;
    z-index: 1;
}

.versionx-title h1{
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.foot-container {
    position: absolute;
    bottom: 64px;
}

.download-container {
    font-size: 20px;
    color: #fff;
    font-family: 'Poppins';
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

#download-button {
    background-color: rgb(224, 183, 0);
    color: #121212;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 16px;
    box-shadow: 0 0 6px rgba(100, 100, 100, 1);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    transition: all 0.2s ease;
}

#download-button:hover {
    cursor: pointer;
    background-color: rgb(255, 219, 57);
    box-shadow: 0 0 12px rgba(100, 100, 100, 1);
}

.explain-server{
    display: flex;
    flex-direction: row;
    gap: 12px;
    background-color: #121212;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(100, 100, 100, 100);
    padding: 6px 8px;
}

#server-name{
    background-color: rgb(209, 171, 0);
    color: #121212;
    font-weight: 600;
    border-radius: 4px;
    padding: 0 6px;
}

#explain-icon{
    width: 24px;
    height: 24px;
    background-image: url(images/question-mark-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

#explain-icon:hover{
    cursor: pointer;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 1));
}

#popup-image{
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
}

#close-popup-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 24px;
    height: 24px;
    background-image: url(images/close-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

#close-popup-icon:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

.how-to-install{
    background-image: url(images/how-to-install.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 90%;
    height: 90%;
    position: relative;
}