/* General styles */
body {
    margin: 0;
    font-family: 'Source Code Pro', monospace;
}

.header {
    display: flex;
    justify-content: left;
    color: rgb(63, 63, 63);
    padding: 20px;
    box-sizing: border-box;
}

.email {
    font-size: 16px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.word {
    text-decoration: none;
    color: rgb(63, 63, 63);
    font-size: 16px;
}

.word:hover {
    color: rgb(0, 0, 255);
}

/* Media query for mobile devices in portrait mode */
@media (max-width: 1000px) /* and (orientation: portrait) 768px is width check recomended for mobile*/ {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .word {
        margin-bottom: 20px;
    }
}
