body {
    /* background-image: url("./images/Pumpkin-Background.png"); */
    background-color: rgb(134, 231, 202);
    margin: 0;
    font-family: "Funnel Sans", sans-serif;
}

.container {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: black;
    text-decoration: none;
}

.orange {
    color: rgb(251, 151, 0)
}

#pumpkin-heart {
    width: 400px;
    margin-left: 20px;
    margin-bottom: 30px;
    animation: rocking 3s linear infinite;
}

@keyframes rocking {
    33% {
        transform: rotate(10deg);
    }
    66% {
        transform: rotate(-15deg);
    } 
    100% {
        transform: rotate(0);
    }
}

#corn-reading {
    width: 170px;
    margin-bottom: 10px;
}

#ata-image {
    width: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

#pumpkin-cover {
    width: 250px;
    border-color: rgb(251, 151, 0);
    border-style: solid;
}

#pumpkin-celebrating {
    width: 250px;
    margin: 20px 0;
    animation: jumping 3s linear infinite;
}

@keyframes jumping {
    50% {
        transform: translateY(-20px)
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 10px;
}

.navbar {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.title {
    margin-top: 20px;
}

.white-section {
    background-color: antiquewhite;
    padding: 30px 0;
}

.horizontal-scroll {
    width: 80vw;
    height: 70vh;
    white-space: nowrap;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.update-card {
    width: 30vw;
    height: 85%;
    white-space: normal;
    border-radius: 10px;
    background-color: ivory;
    float: none;
    margin: 0 0.25%;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    padding: 30px;
    opacity: 0;
}

.update-text { font-size: 14px }

@media (max-width: 768px) {
    .horizontal-scroll {
        width: 80vw;
    }
    .update-card {
        width: 60vw;
    }
}

.date {
    color: gray;
    margin-top: -10px;
    font-size: 14px;
}

.book-stripe {
    width: 100%;
    background-color: ivory;
    display: flex;
    align-items: end;
}

.book-card {
    width: 300px;
    padding: 30px 0px 30px 30px;
}

.book-info {
    margin-bottom: -10px;
}

.book-description {
    width: 400px;
    padding: 30px 0px 30px 30px;
}

.shop-bar {
    display: flex;
}

button {
    width: 100px;
    height: 40px;
    margin: 10px 10px 0 0;
    background-color: white;
    border-width: 1px;
    border-radius: 10px;
    border-color: black;
}

.about-stripe {
    width: 100%;
    background-color: ivory;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card {
    width: 60%;
    padding: 30px 0px;
}

.event-card {
    width: 50%;
    padding: 30px 0px 30px 30px;
}

.contact-stripe {
    width: 100%;
    background-color: ivory;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card {
    width: 90%;
    text-align: center;
}

#amazon { 
    width: 80px;
    margin-top: 5px;
}

#ingramspark { width: 85px; }

@media (max-width: 768px) {
    .book-stripe {
        flex-direction: column;
        align-items: start;
    }
    .book-card {
        width: 100%;
    }
    .book-description {
        width: 85%;
        margin-top: -20px;
    }
    .about-card {
        width: 90%;
        padding: 30px 0px;
    }
    .event-card {
        width: 85%
    }
}

h1 {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 30px;
}

.title-text {
    font-family: "Pacifico", sans-serif;
    font-weight: 100;
}

h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 40px;
}

h3 {
    margin-top: 0px;
}

h4 {
    margin: 0 0 10px 0;
}

h5 {
    margin: 0 0 0 50px
}

#instagram { width: 50px; }

footer {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none !important;
}