* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

.lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

body {
    background-image: url("backgroundcis195.jpg");
    background-size: cover;
    background-position: center;
    color: gray;
    font-family: verdana;
    overflow-x: hidden; /* removes the horizontal scroll*/
    }

header {
    font-family: "lilita one";
    text-align: center;
    border-top: 6px solid #222;
    border-bottom: 6px solid #222;
    background-color: gray;
    color: rgb(145, 209, 209);
    }

header h1 {
    font-size: 50pt;
    letter-spacing: 8px;
    text-shadow: 4px 5px 10px #222;
    }

main {
    border: 20px solid gray;
    width: 35vw; aspect-ratio: 1/1;
    margin: -16px auto; /* center a block element*/
    border-radius: 50%;
    position: fixed;
    top: 17%; left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

#art1 {
    padding-left: 60px;
    margin-top: -300px;
    background-color: lightgray;
    width: 600px;
    height: 270px;
    border-radius: 20px;
    transform: translateX(3%);
}

#art1 h2 {
    padding-left: 30px;
}

#art1 h2 span{
    color: rgb(206, 101, 101);
}

#art2 p {
    text-align: center;
    margin-top: 10vw;
    text-transform: uppercase;
    font-family: times;
    font-weight: normal;
    letter-spacing: 1vw;
    line-height: 1.5;
    font-size: 350%;
    color: rgb(145, 209, 209);
}

nav {
    padding: 40px 30px; /*directional padding*/
    background-color: rgb(180, 180, 180);
    text-align: center;
    position: fixed;
    bottom: 15%;
    }

nav a {
    color: gray;
    text-decoration: none;
    font-size: 16pt;
    display: inline-block;
    padding: 10px 30px;
    }
    
nav a:hover {
    background-color: rgb(145, 209, 209);
    color: #000;
    }

footer {
    text-align: center;
    background-color: gray;
    color: #EEE;
    position: fixed;
    bottom: 0px; left: 0px;
    width: 100%;
    height: 5%;
    }