html * { font-family: Cantarell, sans-serif; } body { background-color: #fafafa; } .header { display: flex; justify-content: center; align-items: center; } .button { background-color: #EBEBEB; color: black; border: none; border-radius: 8px; justify-content: center; align-items: center; text-decoration: none; display: flex; font-size: 16px; font-family: Cantarell, sans-serif; margin: 4px 2px; cursor: pointer; width: 100px; height: 40px; transition-duration: 0.2s; } .button:hover { background-color: #E0E0E0; } .footer { display: flex; justify-content: center; align-items: center; } .versionbutton { background-color: #E5EFFB; color: #1a5fb4; border: none; border-radius:50px; justify-content: center; align-items: center; text-decoration: none; display: flex; font-size: 16px; font-family: Cantarell, sans-serif; font-weight: bold; cursor: pointer; padding-top: 10px; padding-right: 15px; padding-bottom: 10px; padding-left: 15px; margin-top: 10px; margin-bottom: 10px; } .grid-container { display: grid; justify-content: center; grid-template-areas: 'left middle right' } .left { grid-area: left; } .middle { grid-area: middle; width: 15cm; } .right { grid-area: right; } .list { border-radius: 12px 12px 12px 12px; background-color: rgba(255, 255, 255, 1); box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13); margin-bottom: 50px; }