body {
    background-color: rgb(113, 77, 189);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.judul {
    color: white;
    text-shadow: 
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
        font-size: 1.2rem;
}
nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px 0 30px;
    background-color: rgb(201, 166, 236);
    border-bottom: 4px solid rgb(113, 34, 116);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
ul {
    display: flex;
    gap: 60px;
    list-style: none;
    
}
li a{
    text-decoration: none;
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
    background-color: transparent;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.5s ease;
}
li a:hover {
    background-color: white;
    color: rgb(113, 34, 116);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px){
    ul {
        gap: 15px;
    }
    li {
        padding: 5px;
        font-size: 0.8rem;
    }

}

.sorcerers {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sorcerers img{
    width: 300px;
    height: 300px;
    border-radius: 100px;
    border: 5px solid gray;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.6);
}

.sorcerers img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgb(255, 255, 255, 0.6);
}
h2 {
    font-size: 2.8rem;
    text-align: center;
    color: rgb(113, 77, 189);
    background-color: rgb(201, 249, 233);
    border: 4px solid rgb(0, 93, 151);
    width: fit-content;
    margin: 30px auto;
    margin-bottom: 30px;
    padding: 0 15px;
    border-radius: 30px;
    margin-top: 7rem;
}
.information {
    font-size: 1.3rem;
    text-align: center;
    background-color: rgb(201, 249, 233);
    margin-top: 10px;
    margin: 0 auto;
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
    padding: 25px;
    border-radius: 50px;
    width: 80%;
    border: 5px solid rgb(0, 93, 151);
}

.linkchar {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 90px;
    margin-top: 30px;
}
.linkchar a {
    text-decoration: none;
    margin: 10px;
    color: black;
    background-color: rgb(201, 249, 233);
    padding: 10px;
    border-radius: 25px;
    width: 200px;
    border: 5px solid rgb(0, 93, 151);
    transition: color 0.3s ease, transform 0.2s ease;
}
.linkchar a:hover {
    color: white;
    background-color: rgb(0, 93, 151);
    transform: scale(1.1);
}

footer {
    margin-top: 50px;
    display: flex;
    font-size: 1.2rem;
    font-weight: 750;
    justify-content: center;
    background-color: rgb(201, 166, 236);
    border-top: 4px solid rgb(113, 34, 116);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}