body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Tahoma, sans-serif;
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4.7em;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: #000000;
}

.image-container {
	margin: 2%;
	max-width: 80vw;
}

.image-container img {
    width: 50vw;
}

@media only screen and (max-width: 1200px) {
  .image-container {
		margin-top: 20vh;
	}
}

.tile {
    width: 100%;
    background-color: #e0e0e0;
    margin: 7px;
    border-radius: 25px;
    display: flex;
}

.tile p {
    font-size: 1.5em;
    text-align: center;
    justify-content: center;
    text-decoration: none;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}

.icon {
    font-size: 2em;
    margin: 25px;
    height: 100%;
	min-width: 20%;
    display: flex;
    align-items: center;
}
