* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
}


.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 3rem; /* Makes icons bigger if they're font icons */
    justify-content: space-evenly;
}

article {
    width: 100%;
    max-width: 600px;
    margin: 1rem 0;
}

footer {
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 1rem;
}

.my-name {
    font-size: 2.5rem;
}
#penguin {
    width: 150px;
    cursor: pointer;
    position: relative;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    mix-blend-mode: screen;
}

#penguinCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    background-color: transparent;
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

#penguin.jumping {
    animation: jump 0.5s ease-in-out;
}

#cv main {
    margin: 1rem;
}

.date {
    font-size: small;
    font-weight: lighter;
    color: lightgray;
}

.gutter-bottom {
    margin-bottom: 2rem;
}
