* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;

    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 30px;
}

.logo {
    width: min(500px, 80vw);
    height: auto;
}

.tagline {
    margin-top: 18px;

    color: white;
    font-size: 16px;
    font-weight: bold;

    letter-spacing: 4px;
}