@font-face {
    font-family: 'BellavoirSerif';
    src: url('fonts/BellavoirSerif.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OPHELIA';
    src: url('fonts/OPHELIA.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 14px;
    user-select: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    text-align: center;
    overflow-x: hidden;
}

.main-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
}

.maintext {
    font-size: 16vw; /* skala berdasarkan lebar layar */
    font-family: 'OPHELIA', sans-serif;
    font-style: italic;
    word-wrap: break-word;
}

p {
    font-family: sans-serif;
    font-size: 4vw; /* kecil di layar sempit */
}

/* Penyesuaian untuk layar besar */
@media (min-width: 1024px) {
    .maintext {
        font-size: 150px;
    }
    p {
        font-size: 24px;
    }
}
