@font-face {
    font-family: 'Minecraft';
    src: url('minecraftia.ttf');
}

body {
    font-family: 'Minecraft', sans-serif;
    background-color: #3c3c3c;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    text-align: right;
    text-decoration: underline double #ff7b00;
    text-indent: 0;
    text-shadow: 24px 8px 6px #a36700;
    color: #ff7b00;
    font-weight: bold;
    font-size: 24px;
    margin: 20px;
}

.button {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #ffaa00;
    border: 2px solid #804d00;
    color: #3c3c3c;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
}

.button:hover {
    background-color: #ffc04d;
}

.hidden {
    display: none;
}

#console {
    background: #222;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 20px;
    width: 421px;
    height: 329px;
    overflow-y: auto;
    margin-top: 20px;
    resize: both;
    max-width: 90%;
    max-height: 400px;
}

#applyBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#serverIPBox {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #333;
}

#stopServerMessage {
    margin-top: 20px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

#folderInput {
    padding: 10px;
    margin-bottom: 20px;
    width: 80%;
    border-radius: 5px;
    border: 1px solid #3a3a3a;
    color: #3a3a3a;
}

#folderInput::-webkit-file-upload-button {
    background-color: #ffaa00;
    border: 2px solid #804d00;
    color: #3c3c3c;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#folderInput::-webkit-file-upload-button:hover {
    background-color: #ffc04d;
}

#connectingBox .logo {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
