@font-face {
    font-family: 'JejuHallasan';
    src: url('../Fonts/JejuHallasan-Regular.ttf');
}

@font-face {
    font-family: 'Gabarito';
    src: url('../Fonts/Gabarito/Gabarito-VariableFont_wght.ttf');

}
:root {
    --main-red:#DA0028;
    --main-white: #ffffff;
    --main-black: #0B1620;
    --main-orange: #FE9B02;
    --logo-font:'JejuHallasan';
    --main-font:'Gabarito';
    --about-red: #e6002d;
    --main-orange: #f26a2e;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    font-family: var(--main-font), sans-serif;
}

main{
    width: 100%;
    padding-top: 100px;
    min-height: 100vh
}

/* Pizza Size Modal Styles */
.pizza-size-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; top: 0; width: 100%; height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4);
}
.pizza-size-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px 30px;
    border-radius: 8px;
    width: 300px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
}
.pizza-size-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}
.pizza-size-modal-content button[type="submit"] {
    background: var(--main-red);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 100px;
}
.pizza-size-modal-content button[type="submit"]:hover {
    background: var(--main-orange);
}

