/* Author: Ignacy Aleksander Setlak */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

main{
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

a{
    text-decoration: none;
    font-size: 1.5rem;
    background-color: #3498db;
    width: 150px;
    height: 90px;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin: 20px;
    transition: 0.3s;
}

a:hover{
    scale: 1.02;
}

h1{
    margin-bottom: 20px;
    font-size: 3rem;
    color: inherit;
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    position: fixed;
    margin-top: 20px;
    bottom: 0;
}

footer a {
    font-size: 1rem;
    color: #7f8c8d;
    text-decoration: underline;
    font-weight: normal;
    background: none;
    width: auto;
    height: auto;
    display: inline;
}

footer a:hover {
    color: #3498db;
    background: none;
    transform: none;
}