* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

header {
    width: 100%;
    max-width: 1100px;
    align-self: center;
    padding: 20px;
    top: 0;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -9.81px 9.81px 40px 0px rgba(255, 255, 255, 0.3) inset;
    backdrop-filter: blur(28px);
    border-radius: 20px;
}


.logo {
    width: 90px;
}

.container {
    display: grid;
    min-height: 100vh;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding: 10px 20px 0  20px;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: auto;
    max-height: 80vh;
    z-index: 50;
}

.background-image img {
    width: 40vw;
    height: auto;
}

.text-content {
    max-width: 900px;
    text-align: left;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    border-left: 5px solid #ff6347;
    padding-left: 15px;
}

h2 {
    font-size: 2rem;
    margin: 30px 0 15px 0;
    color: #ff6347;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #ff6347;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    color: #fff;
    font-size: 0.9rem;
}

@media screen and (min-width: 1000px) {
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
        padding-left: 10px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    blockquote {
        font-size: 1rem;
    }

    .text-content {
        padding: 15px;
        max-width: 100%;
    }

    .background-image {
        width: 100vw;
        height: 50vh;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        padding-left: 8px;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    blockquote {
        font-size: 0.9rem;
    }

    .text-content {
        padding: 10px;
    }

    .background-image {
        width: 100vw;
        height: 70vh;
    }
}
