body {
    background-image: url("pictures/background.gif");
    color: beige;
    font-family: "Courier New", monospace;
}

/* links */
a:link {
    color: lightgreen;
}

a:visited {
    color: lightgreen;
}

a:active {
    color: green;
}

/* title */
.title {
    font-size: 40px;
    color: white;
}

/* marquee */
.ticker {
	overflow: hidden;
	white-space: nowrap;
    font: bold;
	color: beige;
}

.ticker span {
	display: inline-block;
	padding-left: 100%;
	animation: scroll 12s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/* main table */
.main-table {
    border: 2px solid white;
    width: 700px;
    background-color: black;
    border-collapse: collapse;
}

.main-table td {
    padding: 10px;
    border: 2px solid white;
}

/* footer */
.footer {
    margin-top: 20px;
}