*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    --primary-color: #c92631;
    --secondary-color: #1c1c1c; ;
    --accent-color: #e9d713;
    /* --text-color: rgba(255, 255, 255, 0.568); */
    --tex-color: rgba(230, 230, 230, 0.938);
}
body {
    font-family: "Kurale", serif;
    font-family: 'Bebas Neue', sans-serif;
    font-style: italic;
    font-weight: 100;
    overflow-x: hidden;
    background-color: black;
    transition: .8s;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    flex-direction: column;
}
#loader p {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}
#main-content {
    display: none;
    padding: 20px;
    text-align: center;
}
@media (min-width: 700px) {
    #loader,
    .section {
        background: url('../images/background\ \(3\).webp');
        background-size: cover;
    }
}
.section {
    width: 100%;
}
.container {
    width: 1200px;
    margin: auto;
    padding: 60px 0;
    display: flex;
}
li, a {
    text-decoration: none;
    list-style: none;
}
.title {
    color: white;
    margin-bottom: 60px;
}
.small-title {
    font-size: 22px;
    font-family: "Kurale", serif;
    width: 100%;
}
.main-title {
    font-size: 95px;
    font-weight: 100;
    line-height: 2.2ch;
    margin-top: 30px;
    letter-spacing: 2px;
}
.main-title span {
    color:  var(--primary-color);
;
}


button {
    border: none;
}
button a {
    padding: 14px 30px 14px 30px;
    background-color: #ffffff;
    color:  rgb(0, 0, 0);
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
}
button a i {
    margin-left: 10px;
    font-size: 14px;
    color:  var(--primary-color);;
}

#highlight {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #e9d7138f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999;
    transition: transform 0.1s ease;
}
#custom-pointer {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color:var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: 0s;
}
.whatsapp-icon {
    position: fixed;
    width: 65px;
    top: 80%;
    z-index: 9999;
    left: 20px;
    cursor: pointer;
    opacity: .8;
}
.whatsapp-icon:hover {
    animation-name: rotate;
    animation-duration: .4s;
    animation-iteration-count: 4;
    animation-delay: .2s;
    animation-fill-mode: backwards;
    animation-direction: alternate-reverse;
}
@keyframes rotate {
    0% {
        rotate: 10deg;
        opacity: 1;
    }
    50% {
        rotate:  -10deg;
        opacity: 1;
    }
    100% {
        rotate: 0deg;
        opacity: 1;
    }
}
@media (max-width: 900px) {
    * {
        cursor: cell;
    }
    #loader {
        background-color: black;
    }
    .section {
        overflow: hidden;
        background-color: black;
    }
    .container {
        width: 90%;
        flex-direction: column;
    }
    .content {
        flex-direction: column;
    }
    .title {
        text-align: start;
    }
    .main-title {
        font-size: 55px;
        margin-top: 13px;
        line-height: 2.3ch;
    }
    .small-title {
        font-size: 19px;
        font-weight: 600;
    }
    #highlight, #custom-pointer {
        display: none !important;
    }
}