@font-face {
    font-family: 'Cervino';
    src: local('Cervino Expanded Black Expanded Italic'), local('Cervino-Expanded-Black-Expanded-Italic'),
        url('fonts/Cervino-BlackExpandedItalic.woff2') format('woff2'),
        url('fonts/Cervino-BlackExpandedItalic.woff') format('woff'),
        url('fonts/Cervino-BlackExpandedItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
  }

body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-family: 'Cervino';
    font-size: 10vw;
    margin-top: -30px;
    margin-bottom: 30px;
}

@media screen and (min-width: 600px) {
    h1 {
        font-size: 4em;
    }
}

a {
    text-decoration: none;
    color: black;
}

.tile {
    position: relative;
    width: 100%;
    background-color: rgb(224, 224, 224);
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.tile:hover {
    transition:cubic-bezier(0.075, 0.82, 0.165, 1) .3s;
    transform: scale(1.04);
    background-color: rgb(105, 105, 105);
    color: white
}

.image {
    height: 192px;
    width: 192px;
}

.tile img {
    position: absolute;
    top: 0;
    left: 0;
    margin: 9px 9px;
    width: 32px;
    height: 32px;
}