/* import specific fonts from Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Saira+Stencil+One&family=Satisfy&family=Teko:wght@300..700&family=Young+Serif&display=swap');


/* universal styling */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


/* styling for header and navigation */

header {
    background-color: #cc493f;
    text-align: center;
    padding: 5px;
    height: 270px;
}

nav {
    background-color: #c2a94e;
    margin: 0px 32%;
    padding: 9px;
    position: relative;
    top: 5px;
    border: 6px double black;
    border-radius: 20px;
}

#navLinks {
    font-family: 'Young Serif', serif;
    font-size: 19px;
    color: black;
    text-decoration: none;
}

#navLinks:hover {
    color: #72632c;
}


/* styling for body and info sections */

body {
    background-image: url("paperTexture.jpg");
    border-bottom: 30px double #cc493f;
    margin-bottom: 110px;
}

h1 {
    font-family: 'Satisfy', serif;
    font-size: 110px;
    color: white;
    text-shadow: -7px 7px black;
    margin: 20px 5px 0px;
}

h2 {
    font-family: 'Saira Stencil One', serif;
    font-size: 60px;
    color: #cc493f;
    clear: left;
    text-align: center;
    text-shadow: -5px 5px #c2a94e;
    letter-spacing: 4px;
    padding: 30px 30px 50px;
}

h3 {
    font-family: 'Young Serif', serif;
    font-size: 37px;
    color: black;
    text-align: center;
    text-shadow: 0px 4px #c2a94e;
    padding: 10px 0px;
}

h4 {
    font-family: 'Teko', sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-size: 32px;
    color: white;
    margin: 0px auto;
    position: relative;
    bottom: 10px;
}

p,
ul {
    font-family: 'Teko', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 28px;
    color: black;
}

a {
    font-family: 'Teko', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 25px;
    color: #cc493f;
    text-decoration: underline;
}

a:hover {
    color: #907c37;
}

a:visited {
    color: #cc493f;
}

#copyright {
    margin-left: 44vw;
}


/* section/division styling */

.leftInfo {
    float: left;
    width: 45%;
    border: 8px double black;
    border-radius: 10px;
    padding: 30px 40px;
}

.rightInfo {
    float: right;
    width: 45%;
    border: 8px double black;
    border-radius: 10px;
    padding: 30px 40px;
}

.bottom {
    border: 15px dotted #c2a94e;
}

.initialInfo {
    display: flow-root;
    margin: 60px 10% 0px;
    padding: 70px 0px;
    height: auto;
    align-content: center;
}

.artworkSection {
    margin: 0px 10%;
    padding: 35px;
    align-content: center;
}

.artistSection {
    margin: 40px 10%;
    padding: 35px;
    align-content: center;
}

img {
    width: 33%;
    border-radius: 15px;
}

img:hover {
    border: 11px solid #cc493f;
}

img.artist {
    height: auto;
    width: 33%;
    border-radius: 200px;
    border-color: #907c37;
}

.creationInfo {
    display: flow-root;
    padding: 50px 0px;
    margin: 70px 10%;
    text-align: center;
}

.lastLinks {
    padding: 0px 10%;
    list-style-position: inside;
    text-align: left;
}
