html, body {
    width:100%;
    height:100%;
    margin:0px;
    padding:0px;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
    -webkit-overflow-scrolling: scroll;
}


body {
    background-color: #0E0D12;
    color:white;

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.logo {
    margin:0 auto;
    font-size: 100px
}

.logo a  {
    text-decoration: none;

}

button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.headline {
    text-align: center;
    font-weight: 700;
    font-size: 80px;
    line-height: 67px;
    background: linear-gradient(180deg, #0040ff 0%, #4f87ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.headline .subtitle {
    font-size: 32px;
}


.contacts .contact {
    position: relative;
    margin-bottom:10px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.contacts .contact .title,
.contacts .contact input {
    border: 1px solid #ffffff30;
    border-radius: 20px;
    width: 270px;
    padding: 20px;
    background-color: #ffffff05;
}


.contacts .contact.grn .title {
    border:1px solid #FAF818;
    background-color: #ffffff10;
}

.contacts a.contact.grn:nth-of-type(1) {
    margin-bottom: 50px;
}

.contacts .contact input {
    padding-top: 22px;
    padding-bottom: 22px;
    color:white;
}

.contacts .contact .btn {
    background: #ffffff60;
    color: #FAF818;
    font-weight: 700;
    font-size: 10px;
    padding: 23.6px 0px;
    border-radius: 19px;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 85px;
    text-align: center;
}

.contacts .contact .btn.txt {
    background: transparent;
}

.contacts .contact .title img {
    width:15px;
}

.contacts .note {
    font-size: 12px;
    color:#ffffff30;
    text-align: center;
    margin-bottom:20px;
}

.contacts .note .emoji  {
    color: white;
    margin-left: 5px;
    font-size: 18px;
}

.contacts .contact:hover .btn{
    background-color: #ffffff;
    color:black;
}

.contacts .contact:hover .title {
    cursor: pointer;
}

.contacts .contact:hover .title,
.contacts .contact:hover input
{
    background-color: #ffffff15;
}

.contacts .contact .btn:hover {
    cursor: pointer;
}

.footer {
    display:flex;
    gap:50px;
    margin-bottom:30px;
    font-size:12px;
}

.footer a.item {
    opacity: 0.3;
    color:white;
    text-decoration: none;
}

.footer .item:hover {
    opacity:1;
}

.footer .item img {
    width: 13px;
    margin-right:5px;
    margin-bottom: -2px;
}

.wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

@media (max-width: 600px) {

    .headline {
        font-size:60px;
    }

    .footer {
        font-size:0px;
    }
    .footer .item img {
        width:20px;
    }

}