
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1d3557;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
}

.hero-content img.logo, .hero-content img.actblue {
    height: auto;
    display: block;
}

h1{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
}

.text, p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

a{
    color: #fff;
    font-size: inherit;
}

.hero-content p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.02em;
}


@media (min-width: 1250px) {
    .hero-content img.logo {
        width: 900px;
    }
    h1{
        font-size: 40px;
    }
    p{
        font-size: 16pt;
    }
}

@media (min-width: 650px) and (max-width: 1249px) {
    .hero-section {
        padding: 1.5rem 1rem;
    }

    .hero-content img.logo {
        width: 500px;
    }

    .hero-content p {
        font-size: 12pt;
    }
}

@media (max-width: 649px) {
    .hero-content img.logo {
        width: 300px;
    }
    .hero-content img.actblue{
        width: 150px;
    }

    .hero-content p {
        font-size: 8pt;
    }
}