* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #161616;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-family: monospace;
    font-weight: bold;
    font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
}

.hero {
    min-height: 100vh;
    background-color: rgb(17, 31, 53);
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: rgb(1, 1, 24);
}

