* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coinContainer {
    width: 1350px;
    height: 650px;
    box-shadow: gold 0 0 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.coins {
    display: flex;
    align-items: center;
    gap: 20px;
}
.coin {
    width: 80px;
    height: 80px;
    border: 10px solid #e3b900;
    border-radius: 50%;
    background-color: gold;
    text-align: center;
    color: #e3b900;
    font-size: 55px;
    font-weight: bold;
}

.coin_count {
    font-size: 80px;
    font-weight: bold;
    color: gold;
}

.hamster_block {
    width: 350px;
    height: 350px;
    background-color: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 20px solid #1468ff;
}

.hamster_block img {
    width: 150px;
}