* {
    margin: 0;
    padding: 0;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    background: linear-gradient(180deg,
            black 0%,
            black 85%,
            #0f0f0f 95%,
            #1a1a1a 100%);
    min-height: 100vh;
    color: white;
    font-family: 'DynaPuff', system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "CRSV" 0.5,
        "ELSH" 0,
        "ELXP" 0;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    background-color: rgb(23, 128, 118);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;

}

nav ul li a {
    text-decoration: none;
    color: aquamarine;
}

nav ul li a:hover {
    color: rebeccapurple;
    font-size: 1.1rem;
    transition: font-size 0.1s ease;
}

.left {
    font-size: 1.5rem;
}

main {
    position: relative;
    z-index: 1;
}

main::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
}

main hr {
    border: 0;
    background: #9c9c9c;
    height: 1.2px;
    margin: 40px 84px;
}

.firstSection {
    display: flex;
    justify-content: space-around;
    margin: 140px 0;
    align-items: center;
    flex-wrap: wrap;
}

.firstSection>div {
    width: 30%;
}

.leftSection {
    font-size: 3rem;
}

.leftSection .button {
    padding: 50px 0;
}

.leftSection .btn {
    background-color: violet;
    padding: 12px;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
}

.rightSection img {
    width: 50vh;
    max-width: 450px;
    height: auto;
}

.Name {
    color: aqua;
}

#element {
    color: burlywood;
}

.secondSection {
    max-width: 80vw;
    margin: auto;
    height: 80vh;

}

.secondSection h1 {
    font-size: 1.9rem;
}

.secondSection .box {
    background: white;
    width: 70vw;
    height: 2px;
    margin: 56px 0;
    display: flex;

}

.secondSection .vertical {
    height: 93px;
    width: 1px;
    background-color: white;
    margin: 0 100px;

}

.image-top {
    width: 30px;
    position: relative;
    top: -32px;
    left: -9px;
}

.vertical-title {
    position: relative;
    top: 75px;
    width: 150px;

}

.vertical-desc {
    position: relative;
    top: 86px;
    color: aquamarine;
    width: 150px;
    font-size: 9px;
}

footer {
    background: linear-gradient(180deg,
            #1a1a1a 0%,
            #222222 50%,
            #1a1a1a 100%);
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(26, 26, 26, 0.3) 30%,
            rgba(26, 26, 26, 0.7) 70%,
            #1a1a1a 100%);
    pointer-events: none;
}

.footer {
    display: flex;
    padding: 0 122px;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer>div {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: left;
}

.footer h3 {
    color: aquamarine;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer h4 {
    color: aquamarine;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: aquamarine;
}

footer .foo-rights {
    text-align: center;
    color: #888;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
}

.dropdown-content li {
    list-style: none;
    margin: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show-dropdown {
    display: block;
}

nav ul li a:hover {
    color: rebeccapurple;
    font-size: 1.1rem;
    transition: font-size 0.1s ease;
}

@media screen and (max-width:800px) {
    .firstSection {
        flex-direction: column-reverse;
    }

    .box {
        flex-direction: column;
    }

    .secondSection .vertical {
        height: unset;
        background-color: transparent;
        width: auto;
    }


    body {
        min-width: fit-content;
    }

    .vertical-title .vertical-desc {
        left: 45px;
    }

    nav {
        flex-direction: column;
    }

    .leftSection {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .rightSection {
        width: 721px !important;
        display: flex;
        justify-content: center;
    }

    .rightSection img {
        width: 50vh;
        max-width: 380px;
        margin-bottom: 72px;
    }

    .image-top {
        top: 140px;

    }

    .secondSection {
        max-width: 80vw;
        margin: auto;
        height: 141vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-top {
        display: none;
    }

    .vertical-title {
        position: static;
        width: auto;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .vertical-desc {
        position: static;
        width: auto;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .vertical {
        margin: 20px 0;
        text-align: center;
        padding: 15px;
    }
}