@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@font-face {
    font-family: "RIDIBatang";
    src: url(../fonts/RIDIBatang.otf);
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", "RIDIBatang", serif;
    word-break: keep-all;
}
html{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}
body{
    width: 100%;
    overflow: hidden;
    background-color: #fcf9ee;
}

img, svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ol, ul, li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #1c1c1c;
}

i{
    font-style: normal;
    display: block;
}

h1, h2, h3, h4, h5{
    font-weight: 400;
}