
/* ê¸°ë³¸ ìŠ¤íƒ€ì¼ */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}


/*chocoo*/
.title {
    font-weight: 900;
    font-size: 2.8rem; /* 48pxì—ì„œ rem ë‹¨ìœ„ë¡œ */
    line-height: 1.5;
    letter-spacing: -0.011em;
    color: #FF6347; /* í† ë§ˆí† ìƒ‰ */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 10rem;
}

/* buttons functioning*/
.button {
    width: 100%;
    max-width: 80px;
    height: 80px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none; /* ë§í¬ ë°‘ì¤„ ì œê±° */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
    
}

/*effect*/
.button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/*sprinkles flavour*/
.button1 {
    background: #FFB6C1; /* ì—°í•‘í¬ */
    z-index: 5;
    margin-left: 30px
}

/*chocolate flavour*/
.button2 {
    background: #87CEEB; /* ìŠ¤ì¹´ì´ë¸”ë£¨ */
    z-index: 4;
    margin-right: 30px;
}

/*strawberry flavour*/
.button3 {
    background: #003458; /* êµ°ì²­ìƒ‰ */
    z-index: 3;
    margin-left: 30px;
}

/*vanilla flavour*/
.button4 {
    background: #003458; /* êµ°ì²­ìƒ‰ */
    z-index: 2;
    position: relative;

}

/*cone flavour*/
.button5 {
    background: #003458; /* êµ°ì²­ìƒ‰ */
    z-index: 1;
    position: relative;
    margin: 20px;
}

/* íŽ˜ì´ë“œì¸ ì• ë‹ˆë©”ì´ì…˜ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.menu {

    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
  