html, body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    background-image: url("../img/bgstar.gif");
    cursor: url("../img/lambda.png"), auto;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 35px;
}

h1, h2, p {
    color: #eeeeee;
}

.center {
    text-align: center;
}

.bigtitle {
    font-size: 100px;
}

.red {
    color: red;
}

.blink {
    -webkit-animation: 1.5s linear infinite condemned_blink_effect;
    animation: 1.5s linear infinite condemned_blink_effect;
}

@-webkit-keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

@keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}