body {
    background-image: url("images/freedom.gif");
    background-size: 15%;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;

    color: white;
    font-family: "Courier New", monospace;
    line-height: 1.6;
    text-align: center;

    margin: 0;
    padding: 0;
}

/* Main title */
h1 {
    color: #003D39;
    border: 9px double #003D39;
    border-radius: 10px;
    background-color: white;

    width: fit-content;
    font-size: 64px;
    text-align: center;

    margin: 30px auto;
    padding: 15px 30px;
}

/* Decolonial text container */
.about-box {
    width: 70%;
    max-height: 400px;

    overflow-y: auto;

    margin: 30px auto;
    padding: 20px;

    background: grey;

    border: 4px double white;
    border-radius: 15px;

    text-align: left;

    box-shadow: 4px 4px grey;
}

/* Subtitle */
h2 {
    width: fit-content;
    font-size: 30px;
    text-align: center;

    margin: 20px auto;
    padding: 10px 20px;

    background-color: white;
    border-radius: 10px;
}

/* Decolonial carousel */
.carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
}

/* Hide ugly scrollbar (optional) */
.carousel::-webkit-scrollbar {
    height: 10px;
}

.carousel::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 10px;
}

.carousel img {
    height: 450px;
    border-radius: 10px;
    flex-shrink: 0;

    border: 4px solid white;
    box-shadow: 4px 4px grey;

    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel img:hover {
    transform: scale(1.05);
}