* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-size: 18px;
    display: flex;
    font-family: "Lora", serif;
    overflow-x: hidden;
}

.index img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.main-text-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 700px;
    flex-shrink: 0;
    padding: 64px;
}
h1 {
    margin-bottom: 16px;
    font-size: 300%;
}
p {
    margin-bottom: 16px;
}
ul,
ol {
    margin-bottom: 16px;
}
li {
    margin-left: 1.5em;
}

@media screen and (max-width: 1100px) {
    body {
        flex-direction: column-reverse;
        align-items: center;
        padding: 32px;
        font-size: 16px;
        min-height: 100vh;
        justify-content: center;
        gap: 48px;
    }
    h1 {
        font-size: 250%;
    }
    .index img {
        height: auto;
        aspect-ratio: 1;
        border-radius: 16px;
        border-radius: 500px;
        max-width: 350px;
        width: 100%;
    }
    .main-text-cont {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 0;
    }
}

