* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    width: 100dvw;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0;
    padding: 0;
    font: 10px Fredoka;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background: url('../assets/background.png') no-repeat center center;
    background-size: cover;
}

#main {
    position: relative;
    width: 1200px;
    max-width: 100dvw;
    margin: 0 auto;
    overflow: hidden;
}

#main-image {
    position: relative;
    width: 1160px;
    height: 760px;
    max-width: 100dvw;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}
.current-image, .transition-image, .next-image {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    position: absolute;
    top: -20px;
    left: -20px;
}

#menu-toggle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: url('../assets/paw.png') no-repeat center center;
    background-size: contain;
    border-radius: 50%;
    opacity: 75%;
    transform: rotate(-45deg);
    cursor: pointer;
}

.menu {
    position: absolute;
    bottom: 120px;
    right: 80px;
    margin: 0;
    padding: 0;
    display: none;
}
.menu li {
    margin-top: 10px;
    padding: 14px 10px;
    text-align: center;
    text-transform: uppercase;
    font: 500 2rem Fredoka;
    color: rgb(127, 84, 25);
    background: rgba(252, 218, 162, 0.8);
    cursor: pointer;
    list-style: none;
    border: 2px rgb(127, 84, 25) solid;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(5px) rotate(1deg);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}
.menu li:nth-child(2n+1) {
    transform: translateX(-10px) rotate(-3deg);
}

#message {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    padding: 10px 20px;
    border: 2px rgba(127, 84, 25, 0.8) solid;
    border-radius: 30px;
    font: 500 2rem Fredoka;
    color: rgb(127, 84, 25);
    background-color: rgba(252, 218, 162, 0.8);
    transform: translateX(-50%);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}