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

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

body {
    background: url('images/background.webp') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.content {
    text-align: center;
    color: white;
}

.logo {
    max-width: 100%;
    height: auto;
}

.tagline {
    font-size: 1.5em;
    margin-top: 20px;
}
