html {
    scroll-behavior: smooth;
}

body { 
    margin: 0px;
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #000000;
    font-size: 25px;
    text-align: center;
}

.EasterButton{
    display: inline-block;
    margin-top: 25px;
    padding: 10px 16px;
    background-color:#d20a2e;
    color: #ffffff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 15px;
    border-color: #00000000;
    box-shadow:0 8px 16px rgba(0, 0, 0, 0.2); 

    transition: 0.3s ease;
}
.EasterButton:hover{
    font-size: 27px;
    font-weight: 500;
    cursor: pointer;
}

#footer{
    color: #b9b9b9;
    font-size: 20px;
    bottom: 0;
    width: 100%;
}

@media (max-width:768px){
    #footer{
    color: #b9b9b9;
    font-size: 15px;
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 25px;

    width: fit-content;
    max-width: 95%;
    margin: 0 auto;

    background-color: #ffce1b;
    border-radius: 15px;

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);

    z-index: 1000;
}
.navbar ul{
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar a{
    display: block;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: black;
    transition: 0.3s ease;
    white-space: nowrap;
}
.navbar a:hover{
    background: #d20a2e;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 768px){
    .navbar ul {
        gap: 0px;
    }
    .navbar a {
        padding: 10px 10px;
        font-size: 13px;
    }
    .navbar {
        top: 30px;
        position: sticky;
        max-width: 95%;
    }
}



.laugh{
    width: 1200px;
    max-width: 90%;
}
