@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300;1,18..144,300&display=swap');

a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
 }

body {
    display: flex;
    flex-direction: column;
    font-family: 'Merriweather';
    background-image: url(/images/blackandwhite.png);
    background-blend-mode: lighten;
    background-color: lightgrey;
    background-attachment: fixed;
}

/*Splashscreen*/

div.splashscreen_top{
    margin-bottom: 15rem;
}

div.splashscreen_middle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img.splashscreen_banner{
    background-color: black;
    padding-top: 2rem;
}

a.enter{
    display:flex;
    justify-content: center;
    background-color: black;
    color: aliceblue;
    font-size: 2rem;
    width: 62.5rem;
    padding-bottom: 2rem;
}

p.tw{
    display:flex;
    justify-content: center;
    background-color: black;
    color: aliceblue;
    padding: 1rem;
}

/*nav bar and banner*/

div.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem; 
}

div.nav_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    background-color: black;
    color: aliceblue;
    padding: 1rem;
    font-size: 30px;
    border-radius: 1.5rem;
}

div.dropdown {
    float: left;
    overflow: hidden;
}

div.dropdown .dropbtn {
    font-size: 30px;  
    border: none;
    outline: none;
    color: aliceblue;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

div.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

div.dropdown-content a {
    float: none;
    color: aliceblue;
    font-size: 20px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

div.dropdown-content a:hover {
    background-color: aliceblue;
    color: black;
}

div.dropdown:hover .dropdown-content {
  display: block;
}

/*HOME PAGE*/
div.home_middle_section{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

div.home_middle_left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: black;
    color: aliceblue;
    padding: 1rem;
    padding-bottom: 2rem;
    width: 8rem;
    min-width: 8rem;
    border-radius: 1rem;
}

div.home_middle{
    justify-self: center;
    max-width: 30rem;
    background-color: black;
    color: aliceblue;
    padding: 2rem;
    border-radius: 1rem;
    
}

div.home_middle_right{
    justify-self: end;
    width: 30rem;
    background-color: black;
    color: aliceblue;
    padding: 1rem;
    border-radius: 1rem;
}

div.home_bottom_section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 17rem;
    background-image: url(images/brickwall.jpg);
    background-repeat: repeat-x;
    height: 1080px;
}

/*ART PAGE*/

div.art_middle_section{
    display:flex;
    flex-direction: column;
}

p.oops{
    margin-top: 3rem;
    display: flex;
    align-self: center;
    color: aliceblue;
    background-color: black;
    padding: 2rem;
}

/*This Body*/
div.this_body{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 5rem;
}

div.this_body_text{
    align-self: center;
    background-color: black;
    color: aliceblue;
    width: 20rem;
    padding: 1rem;
}

img.this_body_img{
    width: 40rem;
    border: 5px solid black;
}

/*Jeff the Killer*/
div.jtk{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 20rem;
}

div.jtk_text{
    align-self: center;
    background-color: black;
    color: aliceblue;
    width: 20rem;
    padding: 1rem;
}

img.jtk_img{
    width: 40rem;
    border: 5px solid black;
}

p.end{
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    align-self: center;
    color: aliceblue;
    background-color: black;
    padding: 2rem;
}