body {
    margin: 0;
    padding: 0;
    font-family: 'Luckiest Guy', cursive;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #0058a3;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.feature:hover i {
    color: #ffd700;
    transform: translateY(-2px);
}

@media (hover: none) {

    nav a:hover,
    .feature:hover,
    .feature:hover i,
    .gallery-image img:hover {
        color: initial;
        transform: initial;
        box-shadow: initial;
    }

    .feature i {
        transition: color 0.3s;
    }
}

img:hover {
    filter: brightness(100%);
}

.hero {
    background-image: url('path_to_your_background_image.jpg');
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
}

.feature {
    flex: 0 0 calc(33.33% - 20px);
    text-align: center;
    margin: 0 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #0058a3;
    transition: color 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.feature:hover i {
    color: #ffd700;
    transform: translateY(-2px);
}

.gallery {
    text-align: center;
    padding: 50px 0;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-image {
    flex: 0 0 calc(33.33% - 20px);
    margin: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
}

.gallery-image img {
    max-width: 100%;
    height: auto;
}

@media (hover: none) {

    nav a:hover,
    .feature:hover,
    .feature:hover i,
    .gallery-image:hover,
    .gallery-image img:hover {
        color: initial;
        transform: initial;
        box-shadow: initial;
    }

    .feature i {
        transition: color 0.3s;
    }
}

img:hover {
    filter: brightness(100%);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .mobile-nav {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        height: 60px;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        padding: 30px 0;
    }

    .feature {
        flex: 0 0 100%;
        margin: 0;
        padding: 20px;
    }

    .gallery {
        text-align: center;
        padding: 50px 0;
    }

    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .gallery-images {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .gallery-image {
        flex: 0 0 calc(33.33% - 20px);
        margin: 10px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .gallery-image img {
        max-width: 100%;
        height: auto;
    }

    .gallery-image:hover {
        transform: initial;
        box-shadow: initial;
    }
}

#language-selector {
    display: inline-block;
    margin: 10px;
}

#language-dropdown {
    padding: 5px;
    background-image: url('flag-usa.png');
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
}

@media (max-width: 768px) {
    .download-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .download-section {
        flex-direction: row;
    }

    .download-image {
        margin: 10px;
    }
}

.fade-in {
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.logo-img {
    max-width: 150px;
    height: auto;
}

.documentation-section {
    background-color: #ffe6e6;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.icon {
    color: #ff0000;
    font-size: 36px;
}

#custom-cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #3498db;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

#custom-cookie-banner button {
    background: #fff;
    color: #3498db;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}
.typed-out{
    overflow: hidden;
    border-right: .15em solid rgb(0, 16, 161);
    white-space: nowrap;
    animation: typing 1s steps(20, end) forwards, blinking .8s infinite;
    font-size: 1.6rem;
    width: 0;
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  @keyframes blinking {
    from { border-color: transparent }
    to { border-color: rgb(0, 16, 161); }
  }
  .flavor-image img {
    -webkit-transition: -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
  }
  
  .flavor-image img:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  #bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desktop-environments {
    margin-top: 20px;
  }

  .desktop-environment {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
  }

  .desktop-environment img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    margin-top: 10px;
  }