* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/bg.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    background-clip: content-box;
}

.centered-container {
    width: 700px;
    height: 400px;
    background: rgba(219, 217, 223, 0.11);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.server {
    width: 300px;
    height: 50px;
    background: rgba(219, 217, 223, 0.11);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 90px;
}

.profile-picture {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .centered-container {
        width: 80%;
        height: 50%;
        padding: 10px;
    }
    .server {
        margin-top: 110px;
    }
    .description {
        width: 300px;
    }
}

.title {
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
}

.description {
    position: absolute;
    top: 225px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    color: #ffffff;
}

.title-dev {
    font-size: 20px;
    text-align: left;
    margin-right: 30%;
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
}

.joiner-dev {
    padding-left: 20px;
    text-align: center;
    padding-right: 20px;
    background-color: #2b2a2a70;
    border: none;
    outline: none;
    box-shadow: none;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    height: 35px;
}
.icon-container {
    margin-top: 330px;
}
.icon-container i {
    color: white;
    margin: 0 10px;
    font-size: 30px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.icon-container i:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
