@import url(https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap);
/* Page transition effect */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #250c37;
    opacity: 1;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

body {
    opacity: 0;
    animation: fadeIn 0.5s 0.1s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
:root {
    --primary-color: #250c37;
    --secondary-color: #421862;
    --hover-color: #351252;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: roboto, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}

body {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--primary-color);
}

.sejarah {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
}

.sejarah-kepala-sekolah {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sejarah-text {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 3px;
}

.sejarah-text p {
    text-align: justify;
    text-indent: 2rem;
}

.sejarah-text ul {
    padding-left: 2.5rem;
}

@media screen and (max-width: 1000px) {
    .sejarah {
        padding: 1rem;
    }
}

