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

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #0d0d0d;

    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}

.overlay {

    text-align: center;

    background: rgba(0, 0, 0, .55);

    padding: 60px;

    border-radius: 12px;

    backdrop-filter: blur(6px);
}

.logo {

    width: 220px;
    margin-bottom: 30px;
}

h1 {

    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {

    color: #bcbcbc;
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.text {

    max-width: 650px;
    line-height: 1.7;
    font-size: 1.05rem;
}