* {
    padding: 0;
    cursor: url("images/cursor.png"), auto;
}

@keyframes opacity-pulse {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#fake-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-image: url("images/hearts2.png");
    animation: opacity-pulse 2s alternate infinite;
}

body {
    position: relative;
    list-style-position: inside;
    background-image: url("images/hearts.png");
    background-repeat: repeat;
    font-family: sans;
    font-size: large;
    margin: 0;
}

li {
    border: 1px solid gray;
}

h1,
h2,
p,
ol,
ul {
    background-color: white;
}

table,
td {
    background-color: antiquewhite;
    border: 1px dashed black;
}

.content {
    max-width: 960px;
    margin: auto;
    padding: 10px;
}

.floatright {
    float: right;
}

img {
    max-width: 100%;
    display: block;
}

.centered {
    margin: auto;
    select {
        text-align: center;
        display: block;
        margin: 0 auto;
        font-size: x-large;
    }
}

#sexypic {
    box-sizing: border-box;
    border-style: ridge;
    border-width: 25px;
    border-color: firebrick;
}
