body {
    margin: 0 20vw;
    display: grid;
    text-align: center;
    justify-items: center;
    background-image: url(media/backgrounds/website_background_2.png);
}

h1 {
    color: darkblue;
    font-style: italic;
}

#hrs {
    background-color: white;
    margin: 2vh 0;
    padding: 1px;
}

#hr1 {
    color: black;
    border-style: solid;
}

#hr2 {
    color: black;
    border-style: solid;
    border-width: 3px;
}

.title {
    display: flex;
    justify-content: center;
    margin: 2vh 0;
}

#intro {
    text-align: left;
    border: 1px solid #242486;
    color: #242486;
    padding: 1vw;
    background-color: #75fcae;
}

#ad {
    border: 1px solid black;
    background-color: yellow;
    color: red;
    overflow: hidden;
    position: relative;
    height: 40px;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

#ad p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 40px;
    font-family: "Comic Sans MS", sans-serif;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 15s linear infinite;
    }

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    
}

main {
    width: 100%;
}

.main-grid {
    display: grid;
    margin-bottom: 5vh;
/*    grid-template-columns: repeat(3, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

ul {
    list-style: none;
    padding: 0;

}

ol {
    text-align: left;
}

.middle-col {
    text-align: left;
/*    margin: 1vw;*/
/*    max-width: 30vw;*/
}

.middle-col-content {
    padding: 1vw;
}

#middle-col-img {
    max-width: 100%;
}

.case-files {
    background-color: #75fcae;
    
}

.middle {
    padding: 0 1vw;
    color: #8d7615;
}

.whats-new {
    display: grid;
    grid-template: 2 / 2;
    border-bottom: 2px solid gray;
}

.about-me {
    border-bottom: 2px solid gray;
}

#new-img {
    grid-row: 1 / 3;
}

#new-text {
    grid-row: 1 / 3;
}

.archives {
    background-color: #75fcae;
}

#archives-intro {
    font-family: "Comic Sans MS", sans-serif;
}

.bottom-bit {
    display: flex;
/*    line-height: 12px;*/
    justify-content: center;
    align-items: center;
    margin: 2vh 0;
}

button {
    height: 100%;
    margin: 0 2vw;
    box-shadow:inset 1px 1px 0px 0px #fafafa;
	background:linear-gradient(to bottom, #bdbfc9 5%, #3d3938 100%);
	background-color:#bdbfc9;
	border:2px solid #110af5;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
}

footer {
/*    margin: 5vh 0;*/
}

.footer-links {
/*    display: flex;*/
/*    justify-content: center;*/
}

.footer-blurb { 
    font-size: 14px;
}

#glass_a {
    transform:rotateY(180deg);
}

#question {
    width: 2vw;
}

#link {
/*    width: 30vw;*/
}

