body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../img/bg1.jpg') no-repeat;
    background-size: cover;
    color: white;
}

.hero h1, .hero p {
    text-align: center;
    text-shadow: 0px 0px 10px #000000;
}

.story {
    display: flex;
}

.sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 30%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 70%;
}

.day {
    min-height: 100vh;
    padding: 60px;
    border-bottom: 1px solid #ddd;
}

.footer {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
