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

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.bg-image {
    background-image: url('assets/background.png');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    color: white;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}

p {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 300;
    opacity: 0.8;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
}
