@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");
@font-face {
    font-family: "Cyrulik";
    src:
        url("./fonts/Cyrulik-Sharp.ttf") format("ttf"),
        url("./fonts/Cyrulik-Sharp.woff") format("woff"),
        url("./fonts/Cyrulik-Sharp.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Roboto Serif", serif;
    font-size: 16px;
}

.font-cyrulik {
    font-family: "Cyrulik", serif;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    transition: color 0.3s ease;
}
.reservation-box {
    overflow: hidden;
}
.reservation-box img {
    transition: transform 0.3s ease;
}
.reservation-box:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.menu-box {
    overflow: hidden;
}
.menu-box img {
    transition: transform 0.3s ease;
}
.menu-box a:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.social-links img {
    transition: transform 0.3s ease;
}
.social-links a:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
