* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

.backgurand_cotainer {
    background-image: url(/assests/img/asdasdsd.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 60px;
    color: white;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.navbar .logo,
h2,
.slogo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 200;
}

ul {
    display: inline-flex;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.493);
    padding: 9px 10px;
    border-radius: 100px;
    align-items: center;
    color: white;
    cursor: pointer;
}

ul li {
    padding: 13px 1px;
}

a {
    padding: 13px 19px;
    border-radius: 50px;
    transition: 200ms ease-in-out;
    color: white;
    font-size: 18px;
}

ul li a:hover {
    background-color: rgba(255, 255, 255, 0.178);
    color: white;
}

.btn-1_white {
    background-color: white;
    color: black;
}

.btn {
    font-size: 20px;
    padding: 14px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 200ms ease-in-out;
    background: linear-gradient(90.05deg, #8B7EFF 0.92%, #0900FF 42.12%);
}

.btn:hover {
    transform: scale(1.05);
}

.başlik {
    display: inline-flex;
    padding: 30px 50px;
    background: linear-gradient(89.3deg, #FFFFFF 1.69%, #787FFF 75.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.başlik h1 {
    font-size: 36px;
}

.box_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.boxcontent {
    width: 90%;
    background-color: #0900FF;
    gap: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6.6px);
    border-radius: 12px;
    transition: 250ms ease-in-out;
}

span {
    cursor: pointer;
    color: #b7ffe0;
    transition: 250ms ease-in-out;
}



span:hover {
    color: #00ff91;
}

.boxcontent:hover {
    transform: scale(1.02);
}

.boxcontent h1 {
    font-size: 30px;
    background: linear-gradient(89.3deg, #FFFFFF 1.69%, #787FFF 75.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boxcontent p {
    font-size: 22px;
    margin-top: 20px;
}

.footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 0px 100px;
}

.footer p {
    color: rgba(255, 255, 255, 0.32);
}

@media only screen and (max-width: 320px) {
    .footer {
        width: 170% !important;
    }
}

@media only screen and (max-width: 428px) {
    .navbar .logo h2 {
        display: none;
    }

    .başlik h1 {
        display: none;
    }

    .boxcontent {
        width: 130%;
    }

    .footer {
        width: 140%;
    }
}



@media only screen and (max-width: 768px) {
    .başlik h1 {
        font-size: 26px;
    }

    .footer {
        position: relative;
        right: 90px;
        top: 10px;
    }
}

@media only screen and (max-width: 998px) {
    ul {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {

    .boxcontent h1 {
        font-weight: 800;
        font-size: 28px;
        max-width: 100%;
    }
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}