body {
	background-color: #f1f1f1;
}

#container {
    box-sizing: border-box;
    padding: 32px;
}

#whatitis {
	font-size: 24px;
	color: #95a5a6;
	font-family: monospace;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 256px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #b8d5d4;
    color: #004340;
    font-size: 24px;
    cursor: pointer;
    transition: .5s;
}

.tool:hover {
	background-image: linear-gradient(315deg, #b8d5d4, #dadada);
    translate: 0 -5px;
    box-shadow: 0px 10px 20px #0000001a;
}

a {
    display: inline-block;
	margin: 5px;
    text-decoration: none;
}