@font-face {
    font-family: "Inter Tight";
    src: url("/fonts/inter-tight-300.woff2") format("woff2");
    font-weight: 300;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: black;
    color: white;
}

body .main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.text-section {
    flex: 1;
    font-family: Inter Tight;
    font-size: 2rem;
}

.image-section {
    width: 25vw;
    flex-shrink: 0;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .image-section {
        width: 80%;
        margin-bottom: 20px;
    }
}
