* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #02030a;
}

body {
    color: white;
    min-height: 100dvh;
    font-family: 'Orbitron';
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(135deg, #1c3092, #02030a);
}

.container {
    text-align: center;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    z-index: 1;
}

.icons-container {
    position: fixed;
    display: flex;
    width: 150px;
    gap: 15px;
    bottom: 10px;
    right: 10px;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    transition: 0.5s;
}

.icons-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 0px 15px black)
}

.icons-discord:hover {
    filter: drop-shadow(0px 0px 5px #dddd);
    transform: scale(1.03);
}

.icons-github:hover {
    filter: drop-shadow(0px 0px 5px #dddd);
    transform: scale(1.03);
}

.section-title {
    width: 100%;
}

.section-title h2 {
    margin: 25px;
}

.section-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background: rgba(154,167,255,0.4);
    margin: 0px auto 25px;
}

.boxes {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.box {
    text-align: center;
    background-color: #0b0f1fb9;
    border: 1px solid #0b0f1fb9;
    border-radius: 15px;
    padding: 20px;
    width: 245px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.box:hover {
    transform: scale(1.09);
    border-color: #4a60ca;
    box-shadow: 0 0 10px rgba(108,124,255,0.4);
}

.box img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background-color: #05070eb9;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.box:hover img{
    transform: scale(1.03);
}

.box h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: white;
}

.info {
    font-size: 15px;
    color: #dddddd;
    margin-bottom: 10px;
    cursor: pointer;
}

.info:hover {
    color: #4a60ca;
}

a {
    color: #4a60ca;
    display: block;
    text-align: center;
    text-decoration: none;
} 

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 64px;
    letter-spacing: 4px;
    text-shadow: 0px 0px 15px #b8b8b8;
}

h2 {
    font-size: 30px;
    text-shadow: 0px 0px 15px #02030a;
    text-align: center;
    color: #4a60ca;
}

#particles-js {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}

@keyframes fadeInOpacity {
	0% {opacity: 0;  }
    100% { opacity: 1;	}
}

.status {
    display: inline-block;
    margin-top: 10px;
    border-radius: 15px;
    font-size: 15px;
    padding: 5px 10px;
    
    
}

.online {
    background-color: #0e740081;
    color: #1eff00cc;
    box-shadow: 0px 0px 15px #0e740077;
}

.offline {
    background-color: #7400007c;
    color: #ff0000d0;
    box-shadow: 0px 0px 15px #74000073;
}

.wip {
    background-color: #9c7300;
    color: #ffbb00;
    box-shadow: 0px 0px 15px #9c7300;
    z-index: 3;
    position: relative;
}