body {
    margin: 0;
}

.title {
    text-align: center;
    font-family: "The Nautigal", "Arial", cursive;
    font-weight: 700;
    font-size: 65px;
    font-style: normal;
    padding: 1rem;
}

a {
    text-decoration: none;
    color: black;
}

.navbar {
    padding: 0.5rem;
    font-size: 18px;
    font-family: "Arima", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    gap: 3rem;
    overflow: hidden;
}

.navbar a:hover {
    text-decoration: underline;
}

.slide {
    overflow: hidden;
    margin: 2rem 0;
    white-space: nowrap;
    display: flex;
}

.slide:hover .slide-content {
    animation-play-state: paused;
}

.slide-content {
    display: inline-flex;
    animation: slide 30s linear infinite;
}

.slide-content img {
    height: 400px;
    margin: 0 1rem;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.content {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    padding-top: 1rem;
}

.content img {
    margin-bottom: 1rem;
}

.content img:hover {
    cursor: pointer;
}

#col1 {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#col2 {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#col3 {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: fit-content;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
}

#popup img {
    height: 600px;
}

#popup span {
    position: fixed;
    top: 1%;
    right: 3%;
    font-size: 25px;
    color: white;
}

#popup span:hover {
    color: lightgray;
    cursor: pointer;
}

.stories-navbar {
    display: flex;
    flex-direction: column;
    width: 150px;
    font-size: 18px;
    font-family: "Arima", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 0rem 1rem;
    border-right: 2px solid black;
}

.stories-navbar a:hover {
    background-color: aliceblue;
}

.stories-col {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.about-content {
    display: flex;
    padding: 1rem 10rem;
    justify-content: center;
}

.about-content img {
    margin-right: 2rem;
    height: 400px;
}

.about-content p {
    margin: 0;
    font-size: 18px;
    font-family: "Arima", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}