body {
    background-color: rgb(240, 240, 240);
}

h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    padding-top: 15px;
    padding-bottom: 50px;
}

h2 {
    font-family: 'Courier New', Courier, monospace;
}

h3 {
    text-align: center;
}

p {
    font-family: 'Courier New', Courier, monospace;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 200px;
    border: 3px outset rgb(100, 100, 100);
}

img.topten {
    border: 3px outset gold;
}

img.loved {
    border: 3px outset rgb(255, 50, 50); 
}

img.icon {
    display: flex;
    width: 25px;
    height: 25px;
    border: none;
}

button {
    margin-top: 100px;
    padding: 5px;
    width: 15%;
    height: 8%;
    font-size: larger;
    font-family:'Courier New', Courier, monospace
}

button.back {
    margin-top: 0;
    width: 3%;
    height: 2%;
    font-size: medium;
    font-family:'Courier New', Courier, monospace
}

button.left {
    margin-left: 15%;
    margin-right: 40%;
}

button:hover {
    background-color: rgb(200, 204, 255);
}

footer {
    margin-top: 500px;
    text-align: center;
}

.albumgrid {
    columns: 50px 4;
}

.container {
    display: flex;
    flex-direction: row;
}

.container div {
    width: 20%;
    text-align: center;
}

@media (max-width: 1080px) {
    button {
	width: 90%;
	margin-top: 20px;
	margin-left: 5%;
    }

    button.left {
	margin-left: 5%;
	margin-top: 80px;
    }

    h3 {
	font-size: 8px;
    }

    p {
	font-size: 14px;
    }

    img.topten {
	border: 1px outset gold;
    }

    img.loved {
	border: 1px outset rgb(255, 50, 50);
    }
  
    img {
	display: block;
	margin-left: auto;
	margin-right: auto;
        width: 50px;
	height: 50px;
	border-width: 1px;
    }

    .container div {
	padding-bottom: 20px;
	width: 25%;
    }
	
    button.back {
        width: 20%;
	margin-left: 0;
    }
}

