@font-face {
    font-family: "Minecraftia";
    src: url("fonts/Minecraftia-Regular.ttf");
}
body {
    background-color: #f7cadb;
    font-family: "Minecraftia", monospace;
    color: #47240d;
}
#container {
    text-align: center;
    background-color: #fce1e8;
    border: 1px solid #fce1e8;
    border-radius: 15px;
    width: 80%;
    box-shadow: 1px 3px 5px #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#character-peaking {
    width: 100px;
    height: auto;
}
#prev {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid transparent;
    padding-right:20px;
}
#prev:hover {
    transform: translateY(3px);
}
#prev-img {
    width: 20px;
    height: 20px;
    transform: scaleX(-1);
}
#currentImage {
    width: 50px;
    height: auto;
}
#next {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid transparent;
}
#next:hover {
    transform: translateY(3px);
}
#goButton {
    font-family: "Minecraftia", monospace;
    background-color: #fca5b8;
    border: 3px solid #47240d;
    width:120px;
    height: 50px;
    font-size: 20px;
    clip-path: polygon(2px 0, calc(100% - 2px) 0, 100% 2px, 100% calc(100% - 2px), calc(100% - 2px) 100%, 2px 100%, 0 calc(100% - 2px), 0 2px);
}
#goButton:hover {
    transform: translateY(4px);
}