* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', '', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background-color: black;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: purple;
}

.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1vw 8vw;
    justify-content: space-between;
    transform: translateX(0%);
    transition: 0.4s ease-in-out;
}

.navigation h1 {
    color: white;
}

nav.active {
    position: fixed;
    top: 0;
    transform: translateX(0);
    width: 100%;
    background-color: black;
    box-shadow: 0px 2px 10px purple;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.canclebtn {
    display: none;
    cursor: pointer;
}

.menu ul {
    display: flex;
    flex-direction: row;
}

.menu li {
    list-style: none;
    margin: 20px;
}

.animation {
    position: relative;
    text-decoration: none;
    color: orangered;
    font-size: 20px;
}

.gtaMod {
    margin: 30px;
    color: white;
}

.getmod img {
    width: 90%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.getmod h2 {
    text-align: center;
    margin-bottom: 10px;
    color: orange;
}

.get_Mod {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.download_btn {
    margin: 15px;
}

.download_btn a {
    padding: 10px;
    background-color: rgb(75, 49, 1);
    text-decoration: none;
    color: white;
    border-radius: 10px;
    margin: 10px;
}

@keyframes amate {
    0% {
        background-color: rgb(203, 134, 4);
    }

    15% {
        background-color: rgb(119, 78, 4);
    }

    25% {
        background-color: orangered;
    }

    35% {
        background-color: purple;
        color: white;
    }
}

.steps {
    margin-bottom: 10px;
    font-size: 15px;
}

.key_features {
    margin: 10px;
}

.key_features li {
    margin-bottom: 10px;
}

.key_features h3 {
    font-size: 25px;
    color: orangered;
}

.how_it_work {
    outline: 4px solid orange;
    width: 90%;
    padding: 1rem;
    animation: howmate 2s linear infinite;
    border-radius: 15px;
    transition: animation 0.5s ease-in-out;
}

@keyframes howmate {
    0% {
        outline: 4px solid rgb(72, 48, 2);
        border-radius: 9px;
    }

    10% {
        outline: 4px solid orangered;
        border-radius: 8px;
    }

    15% {
        outline: 4px solid purple;
        border-radius: 7px;
    }
}


.how_it_work h1 {
    color: orangered;
}

.download {
    margin: 3px;
    outline: 2px solid orange;
    padding: 0.8rem;
    width: 95%;
}

@media (max-width:1200px) {
    .hamburger {
        display: initial;
        color: white;
        line-height: 12px;
        font-weight: 1000;
    }

    .canclebtn {
        position: absolute;
        display: initial;
        color: white;
        top: 30px;
        font-size: 30px;
        right: 30px;
    }

    .navigation {
        width: 100%;
        margin-top: 20px;
    }

    nav.active {
        margin-top: 0;
        padding: 3rem;
        height: 2%;
    }

    .menu {
        position: absolute;
        width: 100%;
        top: 0;
        display: flex;
        flex-direction: column;
        left: 0;
        right: 0;
        height: 100vh;
        bottom: 0;
        background-color: black;
        opacity: 0;
        transform: translateX(50%, 100%);
        pointer-events: none;
        transition: opacity 0.4s ease-in-out, transform 0.46s ease-in-out;
        z-index: 999;
    }

    .menu ul {
        position: absolute;
        top: 30px;
        display: flex;
        flex-direction: column;
    }

    .menu.active {
        pointer-events: auto;
        transform: translateX(0, 0);
        opacity: 2;
    }

    .getmod iframe {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .how_it_work {
        outline: 4px solid orange;
        width: 100%;
        padding: 1rem;
        animation: none;
        border-radius: 15px;
    }

    .download_btn {
        animation: none;
        transform: none;
    }

    .download {
        width: 100%;
        border-radius: 10px;
    }
}