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

body {
    min-height: 100vh;
    background: #fbf5f1;
    font-family: Arial, Helvetica, sans-serif;
    color: #071126;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 500px;
}

h1 {
    font-size: 56px;
    letter-spacing: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.subtitle {
    font-size: 22px;
    letter-spacing: 1px;
    color: #1c2740;
}

.line {
    width: 80px;
    height: 4px;
    background: #d8567a;
    margin: 32px 0;
}

.text {
    font-size: 17px;
    letter-spacing: 1px;
    color: #1c2740;
}

.pixel {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(216, 86, 122, 0.22);
}

.pixel-1 {
    top: 0;
    right: 0;
}

.pixel-2 {
    bottom: 80px;
    left: 80px;
}

.pixel-3 {
    top: 160px;
    right: 120px;
    background: rgba(143, 104, 205, 0.25);
}

@media (max-width: 768px) {
    .logo {
        width: 170px;
    }

    h1 {
        font-size: 34px;
        letter-spacing: 7px;
    }

    .subtitle {
        font-size: 17px;
    }

    .text {
        font-size: 14px;
    }
}