/* CSS document used for homework 3
Author: Jesse Pence
Course: ITWP 1050
File: styles.css
*/
body {
    background-color: white; /* For browsers that do not support gradients */
    background-image: linear-gradient(180deg, white, rgb(0, 108, 186));
    line-height: 1.6;
    text-align: center;
}

@font-face {
    font-family: "RubikWetPaint";
    src: url(Rubik_Wet_Paint/RubikWetPaint-Regular.ttf) format(truetype);
}

h1 {
    font-family: "RubikWetPaint", Arial, sans-serif;
    text-shadow: 2px 2px rgb(0, 90, 155);
    letter-spacing: -1px;
    font-variant: small-caps;
    white-space: nowrap;
}

img {
    border: solid 1px lime;
    border-radius: 10px;
}

.external-link::after {
    content: ' (external)';
    color: #663399;
}