body {
    background-color: lightblue;
    font-family: Arial, sans-serif;
}

#wrapper {
    width: 1000px;
    margin: auto;
    background-color: yellow;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px gray;
}

#africa {
    background-image: url(images/africa.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#antarctica {
	background-image: url(images/antarctica.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#asia {
	background-image: url(images/asia.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#australia {
	background-image: url(images/australia.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#europe {
	background-image: url(images/europe.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#northamerica {
	background-image: url(images/northamerica.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#southamerica {
	background-image: url(images/southamerica.jpg);
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-bottom: 80px;
	border: 1px solid black;
}

#cow_logo {
	text-align: center;
}

h2 {
	text-align: center;
    text-decoration: underline;
    font-size: 32px;
	
}

ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 35%;
    
}

li {
    margin: 10px 0;
	text-align: center;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
}


li a {
    background-color: lightgray;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.intro {
    background-color: white;
    padding: 50px;
    border-radius: 100px;
}

.content_row {
    display: flex;
    gap: 40px;          
    align-items: flex-start;
}


form {
    margin-left: 20px;
}


table {
    background-color: white;
	border: 5px solid black;
	border-collapse:collapse;
}

td:first-child {
    font-weight: bold;
	text-align: right;
}


#table2 {
    border: 5px solid black;
    border-collapse: collapse;
}

#table2 td {
    border: 1px solid black;
	 padding: 3px;
}

#table2 th {
    font-size: 35px;
    background-color: black;
    color: white;
}

#table2 tr td:nth-child(2) {
    text-align: center;
}