body {
    margin: 0;
    font-family: "Liter", serif;
}
.banner {
    background-color: #FF0000;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 50px;
    font-weight: bold;
}
.bounce-effect {
display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-30px); }
60% { transform: translateY(-15px); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: lightcoral;
    padding: 14px 20px;
}
.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
}
.navbar a:hover {
    background-color: coral;
    color: black;
}
.navbar .logo {
    flex: 1;
}
.navbar .menu {
    display: flex;
}
.navbar.responsive .menu {
    display: block;
}
.navbar .icon {
    display: none;
}
@media screen and (max-width: 600px) {
    .navbar .icon {
        display: block;
        cursor: pointer;
    }
    .navbar .menu {
        display: none;
    }
    .navbar.responsive .menu {
        display: flex;
        flex-direction: column;
        background-color: lightcoral;
        position: absolute;
        top: 15%;
        left: 0;
        right: 0;
    }
    .navbar.responsive .menu a {
        padding: 10px 20px;
    }
}
.largetextbar {
    font-size: 80px;
    text-align: center;
    margin: 0 100px;
}
.lgtextbarsupport {
    font-size: 25px;
    text-align: center;
    margin: 0 100px;
}
.smltext {
    font-size: 15px;
}
.inline-block {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.inline-block img {
    width: 50px;
    padding: 5px;
}

.storefront {
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 80px;
}

.storefront button {
    color: white;
    background-color: lightcoral;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.storefront button:hover {
    background-color: coral;
}