* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* general colors */
    background-color: black;
    color: white;
    text-shadow:
        1px 1px 10px #fff,
        1px 1px 10px #ccc;

    /* custom font */
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.container {
    text-align: center;
    margin-top: 40vh;
}

img {
    clip-path: circle();
}

a {
    color: whitesmoke;
    text-decoration: none;
    text-shadow:
        1px 1px 8px #fff,
        1px 1px 8px #ccc;
}

a:hover {
    text-decoration: underline;
}
