/* CSS Document used for homework 3 assignment
Author: Braxton Young
Course: ITWP 1050
File: style.css
*/

/* CSS element selector for body declarations, added line-height */

body {
    margin: 25px; 
    font-family: "La Belle Aurore", cursive, Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    line-height: 3rem;
}

/* CSS universal selector for text color for each HTML */

* {
    color: #4682B4;
}

/* CSS element for H1, font family, text shadow, letter spacing, 
small caps font variant*/

h1 {
    font-family: "La Belle Aurore", cursive, Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 0px pink;
    letter-spacing: 5px;
    font-variant: small-caps;
    white-space: nowrap;
    
}

/* CSS element selector for number headings */

h2 {
    font-weight: bold;
    color: black;
}

/* CSS element selector for footer declarations */

footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* CSS element selector for image declarations */

img {
    border: 25px solid black;
    border-radius: 45px;
    width: 275px;
    height: 400px;
}


/* CSS step 1 - background gradient 1 of 2 option */

.gradient1 {
    background-image: radial-gradient(blue, pink);
    width: auto;
    height: 29rem;
}

/* CSS step 2 - Background Image 2 of 2 option */

.background-image {
    background-image: url(shakespeare-banner.jpg);
    height: 14rem;
    width: auto;
}

/* H1 element for web fonts step 2 a-e */

@font-face{
    font-family: "La Belle Aurore";
    font-weight: 400;
    font-style: normal;
    src: url(LaBelleAurore-Regular.ttf)
}


/* CSS ::after pseudo-element */

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