body {
    background-color: #FEECC5;
    color: #205A41;
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.header {
    box-sizing: border-box;
    text-align: center;
    background-image: url(yellow-tartan.png);
    color: #205A41;
    font-family: "Are You Serious", cursive;
    font-size: 30px;
    letter-spacing: 7px;
    margin-top: 0;
    margin-bottom: 80px;
    width: 100%;
}
.button {
    background-color: #FFDC80;
    color: #854e29;
    padding: 10px 20px;
    border-color: #371b12;
    border-width: 2px;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Work Sans", sans-serif;
    position: relative;
    overflow: hidden;
}
.button:hover {
    background-color: #371b12;
    color: #FDF7DF;
}

.button::after {
    content:"";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0;
}
.button.run-glint::after {
    animation: glint 1.2s ease-in-out;
}

@keyframes glint {
    0% { left: -60%; opacity: 0; }
    30% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

.words {
    background-color: #FEECC5;
    color: #205A41;
    font-family: "Work Sans", sans-serif;
    font-size: 40px;
}

.bdy {
    margin: 40px;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    font-size: 30px;
    font-weight: bold;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


footer {
    background: #FFDC80;
    color: #371b12;
    text-align: center;
    box-sizing: border-box;
    font-size: 15px;
    width: 100%;
}
