@font-face {
    font-family: 'Helvetica Compressed';
    src: url('fonts/Helvetica Compressed Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Helvetica Light';
    src: url('fonts/Helvetica Light Regular.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
}

nav {
    max-width: 1920px;
    margin: 0 auto;
}

.nav-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Notify-div {
    display: flex;
}

body {
    background-color: #131313;
}

h1 {
    font-family: 'Helvetica Compressed', sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #A6F88A 0%, #57E4A1 14.4%, #00C7AA 28.4%, #1885CD 42.4%, #6816D2 56.4%, #6F4581 69.9%, #ED6A5D 80.4%, #F6537E 92.4%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    backdrop-filter: blur(3.799999952316284px);
    background-size: 250% auto;
    animation: textShine 2s ease-in-out infinite alternate;
    margin-inline: 24px;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.ayr {
    color: rgba(255, 255, 255, 0.50);
    font-family: Helvetica;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 25px;
    margin-bottom: 34px;
    margin-inline: 24px;
}

.notifyme {
    color: #FFF;
    font-family: 'Helvetica Light', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 34px;
}

input {
    width: 510px;
    height: 50px;
    display: inline-flex;
    padding-left: 17px;
    justify-content: flex-end;
    align-items: center;
    gap: 356px;
    border-radius: 12px 0px 0px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.10);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}

button {
    color: #000;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 17px 30px;
    border-radius: 0px 12px 12px 0px;
    border: none;
    cursor: pointer;
    background-color: #fff;
    transition: .3s;
}

button:hover {
    transform: scale(110%);
    transition: .3s;
    border-radius: 12px;
    box-shadow: #FFCC29 0 0 5px 1px;
}

button:active {
    background-color: #FFCC29;
}

::placeholder {
    color: rgba(255, 255, 255, 0.50);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lang {
    color: #FFF;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background-color:#131313;
    cursor: pointer;
}

img {
    height: 35px;
    width: auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 150px;
}

.copyright {
    margin-top: 5px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.50);
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


@media only screen and (max-width: 850px) {
    h1 {
        font-size: 75px;
        text-align: center;
    }

    input {
        width: 200px;
    }

    button {
        padding: 17px 15px;
    }
}