* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: #fff;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem;
}

.definition {
    max-width: 500px;
    text-align: left;
}

.word {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.1em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.gram {
    font-size: 0.35em;
    font-weight: 300;
    opacity: 0.85;
    vertical-align: baseline;
}

.pronu {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.etymo {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.75;
    margin-bottom: 1rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.mean {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 400px;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.4);
}

/* resp */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
    }
    
    .definition {
        text-align: center;
    }
    
    .meaning {
        max-width: 100%;
    }
}

