body {
    background-image: url('background.png');
    font-family: "Comic Sans MS", "Courier New", Courier, monospace;
    color: #00ff00;
    text-align: center;
}

h1 {
    font-size: 36px;
    text-decoration: underline;
    margin-top: 20px;
}

blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to { visibility: hidden; }
}

.box {
    background-color: #4000ff;
    border: 3px dotted #00ffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 200px;
    height: 100px;
    vertical-align: middle;
    text-align: center;
    padding-top: 20px;
}

.box:hover {
    background-color: #00ffff;
    color: #4000ff;
    transform: scale(1.1);
}

.icon {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 5px auto;
}
