@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: o;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background-color: lightgoldenrodyellow;
}

.navbar {
    padding: 1rem;
    background-image: linear-gradient(to right, rgb(241, 8, 183), rgb(179, 177, 170), rgb(228, 159, 95));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    font-size: large;
    font-weight: bold;
    color: white;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 20%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.cta-btn {
    padding: 10px 8px;
    background-image: linear-gradient(to left, rgb(4, 238, 35), rgb(6, 188, 243));
    border-radius: 10px;
}

.cta-btn:hover {
    background-image: linear-gradient(to left, rgb(203, 238, 7), rgb(233, 5, 17));
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: blue;
        position: absolute;
        top: 80px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.cta {
    margin-top: 20px;
    padding: 50px 80px;
    background-color: green;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ww5-com-logo {
    width: 100px;
    height: 100px;
}

.cta h2 {
    margin-top: 10px;
    color: white;
}

.cta p {
    color: white;
    font-size: large;
    font-weight: bold;
}

.cta-button {
    margin-top: 10px;
    padding: 10px 8px;
    text-decoration: none;
    background-color: rgb(231, 4, 4);
    color: white;
    border-radius: 10px;
}

.cta-button:hover {
    background-color: brown;
}

.about {
    padding: 2rem 1rem;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.cards {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.card {
    padding: 10px 8px;
    background-color: blue;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }
}

.screenshorts {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screenshort {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
}

.screen {
    width: 400px;
    height: 700px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .screenshorts {
        display: flex;
        flex-direction: column;
    }

    .screenshort {
        display: flex;
        flex-direction: column;
    }

    .screen {
        width: 300px;
        height: 700px;
        border: 25px;
    }
}

.games {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.game {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-card {
    padding: 50px 20px;
    background-color: rgb(247, 203, 6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 40vw;
    max-height: 40vh;
    text-wrap-mode: wrap;
    width: 600px;
}

.game-card h3 {
    margin-top: 10px;
}

.game-card img {
    width: 150px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .game-card {
        max-width: 80vw;
        width: 1200pxs;
    }
}

.contact {
    padding: 2rem 1rem;
    background-color: rgb(129, 253, 4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form input {
    padding: 10px 8px;
    border-radius: 10px;
    width: 30vw;
}

.form textarea {
    padding: 10px 8px;
    border-radius: 10px;
    width: 30vw;
}

.form button {
    padding: 10px 8px;
    background-color: red;
    color: white;
    border-radius: 10px;
    font-size: large;
    font-weight: bold;
}

form button:hover {
    background-color: rgb(56, 3, 248);
}

@media (max-width: 768px) {
    .form input {
        padding: 10px 8px;
        border-radius: 10px;
        width: 70vw;
    }

    .form textarea {
        padding: 10px 8px;
        border-radius: 10px;
        width: 70vw;
    }
}

.faq {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faqs {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    align-items: center;
}

.faqs p {
    margin-top: 20px;
    font-size: medium;
    font-weight: 500;
}

.warning {
    padding: 2rem 1rem;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: red;
}

.warning p {
    margin-top: 20px;
    font-size: medium;
    font-weight: 500;
}

footer {
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: medium;
    font-weight: 500;
}