* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 
                 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ========== MENU SECTION ========== */
#menu {
    position: relative;
    padding: 25px 0;
    text-align: center;
    font-size: 2rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#menu::before {
    content:"";
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(menuback.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(10%);
}
#menu h1 {
    font-size: 5rem;
    font-family: "Monoton", sans-serif;
    font-weight: 300;
    font-style: normal;    
    color: burlywood;
    margin-bottom: 3%;
    margin-top: 5%;
}

/* ========== FLEX LAYOUT ========== */
#menu_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    gap: 20px;
}
#menu_col {
    height: 100%;
    flex: 1 1 30%; 
    min-width: 230px;
    max-width: 230px;
    box-shadow: 5px 5px 5px #5e5c5c;
    border: 2px solid #bbb;
    background-color: #fff;
    margin: 5px;
    transition: 0.3s ease;
}
#menu_col:hover {
    background-color: #696464;
    transform: scale(1.05);
}
#menu_col h2 {
    background-color: red;
    color: #fff;
    text-align: center;
    padding: 5px;
    font-family: monospace;
}

/* ========== IMAGE & BOXES ========== */
#image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 4px;
    border: 4px solid orange;
}
#image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
#image img:hover {
    filter: brightness(30%);
}
.box {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 5px;
}

/* ========== BUTTON SECTION ========== */
#place {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;   
}
#place a {
    background-color: rgb(243, 222, 40);
    color: black;
    padding: 10px 20px;
    border: 4px solid red;
    font-size: 20px;
    text-decoration: none;
    border-style: inset;
    border-radius: 10px;
    display: inline-flex;
    justify-content:center;
    align-items: center;
}
#place a:hover {
    background-color: rgb(89, 77, 8);
}




