Newer
Older
2024-nobuki / styles.css
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#gameContainer {
    text-align: center;
}

#gameArea {
    width: 600px;
    height: 600px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    position: relative;
}

#shrinkButton {
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    border-radius: 50%;
}

#scoreBoard, #timer {
    font-size: 18px;
    margin: 10px 0;
}

#startButton {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}