body {
    font-family: 'Cathylise Janetson', Arial, sans-serif;
    color: white;
    background-color: black;
    margin: 0;
    padding: 0;
    font-size: 166%;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: linear-gradient(to right, #1b1a1a, #ddd);
    overflow: hidden;
}
.navigation-wrapper {
    background-color: #444;
    text-align: center;
    padding: 10px 0;
}
.navigation {
    display: flex;
    display: inline-block;
    justify-content: space-around;
    align-items: center;
    width: 50%;
}
.navigation a {
    padding: 14px 20px;
    text-align: center;
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 25px;
    border-radius: 8px;
    font-family: 'Cathylise Janetson', Arial, sans-serif;
}
.navigation a:hover, .navigation a.active {
    background-color: #555;
}
.pre-order-link {
    display: flex; 
    justify-content: center; 
    align-items: center;
    height: 10vh; 
    margin: 0; 
}
.pre-order-link a {
    font-size: 5vw;
    color: grey;
    animation: flash 1s linear infinite;
    text-decoration: none;
}
@keyframes flash {
    0%, 100% { color: grey; }
    50% { color: white; } 
}
.welcome {
    display: flex;
    align-items: center;
    padding: 20px;
}
.bio-mission {
    padding: 20px;
}
.bio-mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20vw;
}
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
}
.slide {
    display: none;
    width: 100%;
    height: auto;
}
.slide img {
    width: 100%;  
    height: auto;
    max-height: 500px; 
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
@font-face {
    font-family: 'Old Figaro Cursive';
    src: url('Old Figaro Cursive.ttf') format('truetype');
}
@font-face {
    font-family: 'Sketch Gothic School';
    src: url('BLACC___.TTF') format('truetype')
}
@font-face {
    font-family: 'Cathylise Janetson';
    src: url('MerriweatherSans-VariableFont_wght.ttf') format('truetype');
}
.title {
    font-size: 18vw;
    animation: slideIn 2s ease-out forwards, wave 1s ease-in-out infinite;
    transform-origin: 50% 50%;
    white-space: nowrap;
    font-family: 'Old Figaro Cursive', Arial, sans-serif;
}
.navigation a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'Cathylise Janetson', Arial, sans-serif;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
}
.slide {
    display: none;
}
.fade {
    animation-name: fade;
    animation-duration: 4s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
.welcome h2 {
    color: #ddd;
    font-size: 10vw;
    text-align: center;
    padding-top: 20px;
    font-family: 'Sketch Gothic School', Arial, sans-serif; 
}
.welcome img {
    max-width: 20vw;
    margin-right: -11vw;
}
.welcome p {
    color: #aaa;
    text-align: center;
    padding: 0 12vw 20px 20px;
    font-size: 1.8vw;
    font-family: 'Cathylise Janetson', Arial, sans-serif;
}
.bio-mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20vw;
} 
.bio-mission img {
    max-width: 15vw;
    margin-left: 20px;
}
.bio-mission h2 {
    color: #fff;
    font-size: 8vw;
    text-align: center;
    padding: 25px 0;
    font-family: 'Sketch Gothic School', Arial, sans-serif;
}
.bio-mission p {
    color: #ccc;
    text-align: justify;
    padding: 0 10vw;
    font-size: 1.5vw;
    font-family: 'Cathylise Janetson', Arial, sans-serif;
    text-align: justify;
}
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    font-size: 1em;
    font-family: 'Cathylise Janetson', Arial, sans-serif;
}
.product {
    margin: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
}
.product h2 {
    color: #ffcc00;
}
.product p {
    font-size: 1.4em;
}
.product ul {
    list-style: none;
    padding: 0;
}
.product li {
    background-color: #444;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}
.navigation a.active {
    background-color: #666;
    color: #fff;
}
@media (max-width: 768px) { 
    .title {
        font-size: 14vw; 
    }
    .navigation a {
        padding: 10px 14px;
    }
    .welcome, .bio-mission, .product {
        flex-direction: column; 
        align-items: center; 
        padding: 10px; 
    }
    .welcome img, .bio-mission img {
        max-width: 10vw; 
        margin-right: 0; 
    }
}

@media (max-width: 480px) { 
    .title {
        font-size: 14vw; 
    }
    .navigation {
        flex-direction: column; 
    }
    .navigation a {
        display: block; 
        margin: 5px 0; 
    }
    .slideshow-container, .slide img {
        max-width: 300px; 
        height: auto; 
    }
}
@media (max-width: 768px) {
    .bio-mission p {
        font-size: 4vw; /* Larger font size for smaller tablet screens */
        text-align: left; /* Change alignment to left to avoid awkward spacing */
    }
}

@media (max-width: 480px) {
    .bio-mission p {
        font-size: 5vw; /* Even larger font size for mobile screens */
        text-align: left; /* Left align text on mobile for better readability */
    }
}