/* ITWP1050 O0851 2025WI Dashon Spate Homework 3: 1984 by George Orwell */
/*Adding web font */
@font-face {
    font-family: 'BungieTint';
    src: url(/homework3/Fonts/BungeeTint-Regular.ttf) format('truetype');
}
/* setting preferred color of text */
*{
    color: #8B0000
}
/* making the text on the page more uniform along with adding a bit of design to the background*/
body{
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    line-height: 2rem;
    background-image: radial-gradient(
        circle at top left,
        black 10%,
        white
    );;

}
/* Styling the H1 element */
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'BungieTint';
    text-shadow: 2px 4px 0px black;
    letter-spacing: 3px;
    font-variant:small-caps;
    white-space: nowrap;
}
/* placing the footer in the right place */
footer{
    margin-top: 50px;
    margin-bottom: 50px;
}
/* Adding a border to the image */
img{
    border: 1px solid black;
    border-radius: 10px;
}
/* styling the link to the external source */
.external::after{
    content: ' (external)';
    color:crimson;
}
/* Creating background for the second image */
div{
    background-image: url('biggestbrother.jpg');
    background-repeat: no-repeat;
    background-size: 2000px;
}