@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: #870000;
}

a {
    color: #f9f6ef;
}

.highlighted-text {
    color: #ffff36;
    font-weight: 800;
}

.text-center {
    text-align: center;
}

body {
    background: linear-gradient(#c30000bb, #c30000cc), url('./background-image.png');
    background-size: cover;
    background-position: center;
}

.hero {
    color: #f9f6ef;
    min-height: 100vh;
    height: 100%;
    font-family: 'Rubik', sans-serif;
    display: flex;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 2000px;
    height: 100vh;
    width: 100%;
    padding: clamp(3rem, 6vw, 6rem);
}

.hero-content .divided-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-content .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 66px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 35px;
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
}

.particles-animation {
    height: 100%;
    width: 100%;
}

@media(max-width: 768px) {
    .hero-content .divided-section {
        display: flex;
        flex-direction: column;
    }

    .particles-animation {
        height: 40rem;
    }
}