body {
    /*background: linear-gradient(to bottom, #00d9ff, #d900ff);*/
    background-color: #000000;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

@font-face {
    font-family: 'Font1';
    src: url('/Fonts/font8.ttf');
}

text1 {
    font-family: 'Font1';
    text-align: center;
    font-size: 20px;
}

figcaption {
    font-family: 'Font1';
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    width: 100px;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    animation: particleMove 1s ease-out forwards;
}
@keyframes particleMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-100px + 200px * var(--x)), calc(-100px + 200px * var(--y))) scale(0.5);
        opacity: 0;
    }
}

privacy {
  font-size: 20px;
}

.privacy2 {
  font-size: 20px;
  margin-top: 40px;
}

.privacy3 {
  /*text-indent: 40px;*/
  font-size: 20px;
  margin-top: 5px;
  /*text-align: left;*/
  /*max-width: 700px;*/
}

.no-trailer {
    width: 640px;
    height: 360px;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-size: 70%;*/
    z-index: -1;
    background-image: url('/CafeMoji/back.png');
    background-repeat: repeat;
    animation: moveBackground 20s linear infinite;
    
    /*background-position: center center;*/
    /*background-attachment: fixed;*/
    /*-webkit-background-size: cover;*/
    /*-moz-background-size: cover;*/
    /*-o-background-size: cover;*/
}
@keyframes moveBackground {
    0% {
    background-position: 0 0;
    }
    100% {
    background-position: 0px 1000px;
    }
}

.container {
    text-align: center;
    max-width: 1024px;
    width: 100%;
    margin-top: 20px;
}

header, main, footer {
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 558px;
    margin: 10px auto;
}

.footer-text {
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    margin-top: 80px;
    margin-bottom: -10px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons img {
    width: 50px;
    transition: transform 0.1s ease;
}

.social-icons a img:hover {
    transform: scale(1.4);
}

.main-logo {
    width: 100%;
    max-width: 60%;
    max-height: 60%;
    margin: 20px auto;
}

iframe {
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 16 / 9; /* Ensures the iframe maintains 16:9 ratio */
}

.store-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.store-links img {
    width: 200px;
    height: auto;
    transition: transform 0.1s ease;
}

.store-links a img:hover {
    transform: scale(1.1);
}

.contact {
    margin-bottom: 20px;
}

.contact a img {
    transition: transform 0.1s ease;
    max-width: 128px;
}

.contact a img:hover {
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-info2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-info2 a img {
    transition: transform 0.1s ease;
}

.contact-info2 a img:hover {
    transform: scale(1.2);
}

.contact-icon {
    height: 80px;
}

.contact-letter {
    height: 40px;
}

.video-policy {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: white;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .logo,
    .main-logo {
        max-width: 90%;
    }
    
    /*.background {
        background-size: 70%;
    }*/

    .social-icons {
        flex-direction: row;
        gap: 10px;
    }

    .social-icons img {
        width: 40px;
    }
    
    .social-icons a img {
        transition: transform 0.1s ease;
    }

    .store-links {
        flex-direction: row;
        gap: 5px;
    }

    .store-links img {
        max-width: 150px;
    }

    .contact-info {
        flex-direction: row;
        gap: 10px;
    }

    .contact-icon {
        height: 70px;
    }
    
    .no-trailer {
        width: 320px;
        height: 180px;
    }

    .contact-letter {
        height: 40px;
    }
}
