* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #f2f2f2;
    font-size: 14px;
}

/* .header {
    width: 100%;
    height: 100vh;

    background-image: url(../img/Prototype-600.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .header {
        background-image: url(../img/Prototype.png);
    }
} */

.header {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.header picture,
.header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@media (min-width: 800px) and (max-width: 899px) {
    .header {
        background-image: url(../img/Prototype.png);
    }
}

.navbar {
    height: 60px;
    background-color: rgba(0, 32, 86, 0.6);

    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
}

.navbar a {
    text-decoration: none;
    color: #f2f2f2;
    font-weight: bold;
}

.navbar a:hover {
    color: #0886d6;
}

.hero {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 10px;
    margin-top: 10px;
}

@media (min-width: 900px) {
    .hero {
        margin-top: 100px;
    }
}

.hero-content {
    width: 100%;
    height: 100%;
    text-align: center;
}
@media (min-width: 900px) {
    .hero-content {
        width: 600px;
        text-align: start;
    }
}

@media (min-width: 800px) and (max-width: 899px) {
    .hero-content {
        width: 550px;
        text-align: start;
    }
}

.hero-content h1 {
    font-size: 30px;
}

.hero-content h1 span {
    color: #0886d6;
}

.hero-content p {
    font-size: 14px;
    margin: 30px 0;
}

@media (min-width: 576px) {

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

@media (min-width: 800px) and (max-width: 899px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.hero-content hr {
    width: 100px;
    color: #f2f2f2;
    margin-bottom: 30px;
    margin-inline: auto;
}

@media (min-width: 900px) {
    @media (min-width: 900px) {}
    .hero-content hr {
        margin-inline: 0;
    }
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (min-width: 900px) {
    .buttons {
        justify-content: flex-start;
    }
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    color: #f2f2f2;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    background: linear-gradient(to right, #0886d6, #001f56);
    border: 2px solid linear-gradient(to right, #0886d6, #001f56);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f2f2f2;
}