@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: "SF Pro Display", sans-serif;
    user-select: none;
}

.landing-page-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff2e3;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
    margin: 0 0 1.5rem 0;
}

.social-media img {
    width: 2rem;
    height: 2rem;
}

.kovin-logo {
    width: 34rem;
    height: 13.25rem;
    margin-bottom: 2rem;
    user-select: none;
}

p {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

form {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 35%;
    gap: 0.5rem;
}

input {
    font-family: "Roboto", sans-serif;
    font-size: 0.75rem;
    border: 1px solid #c1c1c1;
    border-radius: 5px;
    width: 50%;
    height: 20%;
}

button {
    margin: 1rem;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    background-color: #ffb571;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    transition: 0.5s ease background-color;
}

button:hover {
    background-color: #ff7900;
}

textarea {
    width: 50%;
    height: 80%;
    border: 1px solid #c1c1c1;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 0.75rem;
    resize: none;
}

input:focus,
textarea:focus {
    border: 1px solid #ffb571;
    outline: none;
}

.social-icon {
    filter: invert(52%) sepia(1%) saturate(265%) hue-rotate(316deg) brightness(96%) contrast(85%);
    height: 1rem;
}

#facebook:hover {
    filter: invert(47%) sepia(100%) saturate(6218%) hue-rotate(214deg) brightness(102%) contrast(102%);
}

#instagram:hover {
    filter: invert(14%) sepia(87%) saturate(4373%) hue-rotate(326deg) brightness(103%) contrast(116%);
}

#tiktok:hover, #x:hover {
    filter: invert(0%) sepia(0%) saturate(7496%) hue-rotate(251deg) brightness(87%) contrast(95%);
}

#telegram:hover {
    filter: invert(63%) sepia(96%) saturate(2622%) hue-rotate(169deg) brightness(94%) contrast(90%);
}

#youtube:hover {
    filter: invert(18%) sepia(70%) saturate(6554%) hue-rotate(356deg) brightness(95%) contrast(122%);
}

@media (max-width: 768px) {
    .kovin-logo {
        width: 22.5rem;
        height: 8.6rem;
    }

    input {
        width: 50vw;
    }

    textarea {
        width: 50vw;
    }

    button {
        padding: 0.25rem 2rem;
    }
}