body {
  background-color: rgb(53, 25, 75);
  margin: 30px;
  font-family: 'Times New Roman', Times, serif;
}

#header {
    display: block;
    width: 100%;
    margin-bottom: 0px;
}

#links {
      ul {
        list-style-type: none;
        position: sticky;
        top: 0;
        padding: 0;
        overflow: hidden;
        background-color: #1d1a1a;
    }

    li {
        float: left;
    }

    li a {
        display: block;
        color: rgb(233, 233, 233);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 20px;
    }

    /* Change the link color to #111 (black) on hover */
    li a:hover {
        background-color: #111;
    }
}

.container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 15px;
    gap: 10px 8px;
    
}
.container > div {
    /* background-color: #a0b0bd; */
    background-image: url(images/containerBG.webp);
    background-size: cover;
    border: 2px solid rgb(82, 80, 83);
    padding: 10px;
    font-size: 18px;
}
.flex-container {
    display: flex;
}
.flex-container > div {
    padding: 10px;
    position: relative;
    
}
.pageName {
    padding-left: 15px;
    color: rgb(181, 186, 196);
    font-size: 35px;
}

#title {
    justify-content: flex-start;
    font-size: 25px;
    text-align: left;
    align-items: center;
    height: 150px;
    margin-bottom: none;
    padding: 0;
    background-image: url(images/flowerHeader.jpg);
    background-size: cover;
    background-position: center;
}

#title > div > h1{
    background-color: aliceblue;
}



/* homepage */
#quote {
    grid-area: header;
    grid-column: 1 / span 4;
    grid-row: 1 / span 1; 
}
#intro {
    display: block;
    grid-column: 1 / span 1;
    grid-row: 2 /span 2;
}
#musicStatus {
    display: block;
    grid-column: 2 / span 1;
    grid-row: 2 / span 2;
    width: 220px;
}
#time {
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
}
#time > div {
    font-size: 25px;
    text-align: center;
    justify-content: center;
}
#update {
    grid-column: 4 / span 1;
    grid-row: 2 / span 1;
}
#status {
    grid-column: 3 / span 2;
    grid-row: 3 / span 1;
    display: flex;
    flex-direction: column;
}
#status > div {
    justify-content: center;
}
#webrings {
    grid-row: 4 / span 2;
    grid-column: 1 / span 2;
}
#media {
    grid-row: 4 / span 2;
    grid-column: 3 / span 2;
}
#blinkies {
    grid-column: 1 / span 4;
}
#cassete {
    display: flex;
    justify-content: center;
}
#listening {
    display: block;
    border: 3px solid #3a1941;
    padding: 10px;
}
#listening > div > h4 {
    color: rgb(0, 0, 0);
    font-size: 15px;
}
#listening > div > p {
    color: rgb(84, 88, 91);
    font-size: 13px;
}
#clock {
    font-size: 45px;
    display: flex;
    justify-content: center;
}
#blinkies > div {
    grid-area: footer;
    justify-content: center;
}

/* aboutMe page */
#quickFacts {
    grid-column: 1 / span 1;
    grid-row: 1 /span 2;
}
#quickFacts > div{
    display: block;
    padding-top: 10px;
}

#socialMedia {
    grid-column: 1 / span 1;
    grid-row: 3 / span 3;
}
#fullIntro {
    grid-column: 2 / span 3;
    grid-row: 2 / span 2;
}
#socialMedia > p {
    font-size: 15px;
    word-wrap: break-word;
}
#quote2 {
    grid-row: 1 / span 1;
    grid-column: 2 / span 3;
}
#buttons {
    grid-row: 4 / span 2;
    grid-column: 2 / span 3;
    
}

/* blog page */
#description {
    grid-column: 1 / span 3;
    font-size: 20px;
}
#blogPosts {
    grid-column: 1 / span 2;
    grid-row: 2 / span 2;
}
#blogPosts > div > a {
    color: #111;
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    font-style: italic;
}
#blogPosts > div > a:hover {
    background-color: #1111112a;
}
#quote3 {
    grid-row: 2 /span 1;
}
#shrineList {
    grid-row: 3 / span 2;
}