html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to right, #2F2F2F, aliceblue);
}

.nav-link.about {
    text-decoration: none;
    color: #2F2F2F;
    font-weight: bold;
    font-family: "Goldman", sans-serif;
    font-size: 20px;
}

h1 {
    text-align: center;
    font-family: "Goldman", sans-serif;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(188, 116, 188), 0 0 20px aliceblue, 0 0 30px aliceblue, 0 0 40px aliceblue;
}

.cardSorcerer {
    position: relative;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.cardSorcerer img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.cardSorcerer:hover img {
    transform: scale(1.1);
}

.cardSorcerer .sorcererInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #e4dcf3, #c5ddf3);
    color: #4e234e;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-family: "Goldman", sans-serif;
}

.cardSorcerer:hover .sorcererInfo {
    opacity: 1;
}

.sorcererName {
    text-align: center;
    font-family: "Goldman", sans-serif;
    margin-top: 10px 0;
    font-size: 22px;
    font-weight: bold;
}

.sorcererAbility {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    background-color: aliceblue;
    border-radius: 4px;
}

.footer {
    background-color: #2F2F2F;
    color: aliceblue;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Asul', serif;
    margin-top: 20px;
}

.footerLogo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footerContent a {
    color: cadetblue;
    text-decoration: none;
}

.footerContent a:hover {
    text-decoration: underline;
}