*{
        margin: 0;
        padding: 0;
}

body{
        width: 100%;
        height: 100vh;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
}
a{        
        padding: 0.5rem 1.5rem;
        border-radius: 1rem;

        text-decoration: none;
        font-family: 'Courier New', Courier, monospace;
        
        font-size: 2rem;
        color: white;
        background-color: #323232;
}

a:hover{
        transform: scale(1.03);
}