*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat',sans-serif;
}

body{
    width: 100%;
    height: 100vh;

    background-color: #333;
    color: azure;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a{
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease-in-out;
}