#home_welcome {
    position: relative;
    top: -14vh;
    width: 100%;
    margin-bottom: -15vh;
    user-select: none;
}

#home_welcome img {
    width: 100%;
    min-height: 60vh;
    object-fit: cover;
}

#home_welcome_text {
    position: absolute;
    top: 30%;
    left: 26%;
    line-height: 1.0;
    font-family: "Arial Black";
    color: #333;
    text-shadow: 0px 0px 20px #fff, 0px 0px 20px #ccc;
    -webkit-font-smoothing: antialiased;
}

#home_welcome_buttons {
    min-width: 150px;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 26%;
    width: 13%;
}
#home_welcome_buttons button {
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    height: 52px;
    border-radius: 6px;
    border: 3px outset rgba(0.2, 0.2, 0.2, 0.2);
    box-shadow: 0px 0px 20px #fff;
}
#home_welcome_buttons button:hover, #home_footer button:hover {
    cursor: pointer;
    box-shadow: 0px 0px 60px #fff;
}
#home_welcome_buttons button:active, #home_footer button:active {
    border: 3px inset rgba(0.2, 0.2, 0.2, 0.2);
}
#home_welcome_button_a {
    background-color: #ffe23d;
    letter-spacing: 2px;
}
#home_welcome_button_b {
    background-color: #fff8ce;
    letter-spacing: 3px;
}

#home-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
#home-features li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
}
#home-features span {
    font-size: 1.1em;
}
#home-features li > div {
    background-color: #333;
    margin: 20px;
    border-radius: 12px;
    width: 8vh;
    height: 8vh;
    position: relative;
    box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.4);
}
#home-features img {
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

@media only screen and (max-width: 868px) {
    #home-features {
        gap: 30px;
    }

    #home-features li {
        order: 2;
        flex: none;
        width: 40%
    }

    #home-features li.main-home-feature {
        order: 1;
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    #home-features {
        flex-direction: column;
    }

    #home-features li {
        order: 2;
        flex: none;
        width: 100%;
    }
}

#img-card {
    width: 80%;
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
    -webkit-filter: drop-shadow(0px 0px 1vh rgba(255, 255, 100,0.85));
    filter: drop-shadow(0px 0px 1vh rgba(255, 255, 100,0.85));
}
@keyframes float {
	0% {
		box-shadow: 0 0 25px 4px rgb(255, 255, 155,0.3);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 -10px 25px 10px rgba(255,255,155,0.1);
		transform: translatey(-2vh);
	}
	100% {
		box-shadow: 0 0 25px 4px rgba(255,255,155,0.3);
		transform: translatey(0px);
	}
}

#home-server-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.home-server-title {
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 30px;
    font-size: 1.3em;
    position: relative;
    background-color: #3b576d;
    border-radius: 7% / 40%;
    /*border: 1px solid rgba(0,0,0,0.2);*/
}
.home-server-footer {
    position: absolute;
    bottom: -26px;
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    
    /*border: 1px solid rgba(0,0,0,0.2);*/
}
.home-server-counter {
    display: inline-block;
    width: 10%;
    padding: 20px 24px 20px 20px;
    font-size: 1.5em;
    background-color: #333;
    border-radius: 40%;
    margin-right: -6%;
    margin-left: 7%;
}
.home-server-footer span{
    font-size: 1.3em;
    display: inline-block;
    background-color: #333;
    border-radius: 7% / 40%;
    padding: 10px 30px;
}
.home-server-items {
    margin-top: 4%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px
}
.home-server-info-card {
    margin: 40px 10px;
    padding: 30px 30px 45px 30px;
    background-color: #47647C;
    border-radius: 16px;
    width: 36%;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: white;
    position: relative;
}
.home-server-info-card h2{
    color: white;
    text-align: left;
    margin-left: 14;
    margin-top: 4px;
    margin-bottom: 2px;
    padding: 0;
}
.home-server-info-card span{
    margin-left: 6px;
    display: block;
    text-align: start;
    font-family: monospace;
    font-size: 1.3em;
    line-height: 1.3;
}
@media only screen and (max-width: 730px) {
    .home-server-info-card span {
        font-size: 1.0em;
    }
    .home-server-title, .home-server-info-card h2 {
        font-size: 1.1em;
    }
    #home-season-bar {
        padding-right: -10px;
    }
}
#home-season-bar {
    position: relative;
    width: 96%;
    height: 2.4em;
    margin: auto;
    background-color: #ffe23d;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
#home-season-bar-last-month {
    position: absolute;
    right: 0;
    width: 33%;
    height: 100%;
    border-radius: 0 10px 10px 0;
}
#home-season-bar-last-month-frame {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 33%;
    height: 100%;
    background-color: rgba(255,255,255,0.3);
    border: 1px dashed rgba(0, 0, 0, 0.5);
    border-radius: 0 10px 10px 0;
    z-index: 2;
}
#home-season-bar-last-month-frame:hover {
    box-shadow: 1px 0px 3px rgba(0,0,0,0.6);
}
#home-season-bar-progress {
    position: absolute;
    background-color: #fc2f6c;
    z-index: 4;
    width: 1px;
    height: 100%;
    top: -6px;
    border: 6px solid #fc2f6c;
    vertical-align: middle;
    border-radius: 3px;
}
#gift-box {
    height: 5em;
    margin-bottom: -26px;
    -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.5));
}
#home_footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #ffe23d;
}
#home_footer_content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media only screen and (max-width: 400px) {
    #home_footer {
        padding-top: 0;
    }

    #home_footer_content {
        flex-flow: column;
    }
}

#home_footer button {
    width: 200px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    height: 52px;
    border-radius: 6px;
    border: 3px outset rgba(0.2, 0.2, 0.2, 0.2);
    box-shadow: 0px 0px 20px #fff;
    background-color: #fff8ce;
    letter-spacing: 3px;
}

.iframe-min {
    display: none;
}

@media only screen and (max-width: 350px) {
    .iframe-max {
        display: none;
    }

    .iframe-min {
        display: inline;
    }
}