@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0C0C0D;
}

nav h1 {
    color: white;
    font-size: 26px;
    padding-left: 10%;
    padding-top: 3%;
}

nav .ext {
    color: #ff6060;
}

.container p {
    color: white;
    font-size: 18px;
    padding-top: 15%;
}

.container h1 {
    color: #ff6060;
    font-weight: 800;
    font-size: 50px;
    line-height: 35px;
    margin-top: 70px;
}

.container .desc {
    position: absolute;
    top: 42%;
    left: 27%;
    width: 500px;
    transform: translate(-50%, -50%);
    text-align: left;
    margin-top: 1px;
}

.container .dwnld {
    background-color: #1A1A1A;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 15px;
    /* Adjust the border-radius value to make the button rounder */
    padding: 12px 45px;
    transition: .3s;
    position: absolute;
    top: 70%;
    left: 17%;
    /* Adjust the left position to center the button */
    transform: translate(-50%, -50%);
}

.container .dwnld:hover {
    background-color: #ff6060;
    box-shadow: 0 0 0 5px #b63d3d;
    color: #fff;
}

.container .dc {
    display: inline-block;
    position: relative;
    color: white;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 70%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.container .dc::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6060;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.container .dc:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.wave {
    animation-name: wave-animation;
    /* Refers to the name of your @keyframes element below */
    animation-duration: 2.5s;
    /* Change to speed up or slow down */
    animation-iteration-count: infinite;
    /* Never stop waving :) */
    transform-origin: 70% 70%;
    /* Pivot around the bottom-left palm */
    display: inline-block;
}

@keyframes wave-animation {
    0% {
        transform: rotate( 0.0deg)
    }
    10% {
        transform: rotate(14.0deg)
    }
    /* The following five values can be played with to make the waving more or less extreme */
    20% {
        transform: rotate(-8.0deg)
    }
    30% {
        transform: rotate(14.0deg)
    }
    40% {
        transform: rotate(-4.0deg)
    }
    50% {
        transform: rotate(10.0deg)
    }
    60% {
        transform: rotate( 0.0deg)
    }
    /* Reset for the last half to pause */
    100% {
        transform: rotate( 0.0deg)
    }
}

.gui {
    width: 450px;
    position: absolute;
    top: 20%;
    left: 55%;
    transform: translate(-50%, -50%);
    transform: scaleX(1) scaleY(1) perspective(500px) rotateY(-15deg) rotateX(8deg) rotateZ(-1deg);
    transition: 0.5s ease-out;
}

.gui:hover {
    transform: scaleX(1) scaleY(1) perspective(500px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
}

.word {
    text-decoration: underline;
}

.features h1 {
    color: white;
    font-weight: 600;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features p {
    color: #BEBEBE;
    position: absolute;
    top: 127%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card1 {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    font-family: 'Poppins', Sans-serif;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #171717;
    border-radius: 20px;
    margin: 10px;
    width: 300px;
    float: left;
    height: 300px;
    text-align: center;
    color: white;
    transition: all 0.5s ease;
}

.card1 {
    width: 190px;
    height: 254px;
    border-radius: 30px;
    background: #212121;
    box-shadow: 15px 15px 30px rgb(25, 25, 25), -15px -15px 30px rgb(60, 60, 60);
}