html {
    scrollbar-color: yellow black;
}

body {
    background-color: black;
    color: white;
    font-size: 25px;
    letter-spacing: 0.1em;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: palegoldenrod;
}

a:focus {
    color: yellow;
}

.content {
    margin: auto;
    margin-top: 5px;
    width: 515px;
    height: 485px;
    display: grid;
    grid-template-columns: 125px 125px 125px 125px;
    grid-template-rows: 125px 125px 125px 100px;
    gap: 5px;
    
}

.content-border {
    margin: auto;
    margin-top: 5%;
    width: 525px;
    height: 500px;
    border: 3px solid white;
}

/* Home page */

.about {
    grid-area: 1 / 1 / 2 / 2;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diary {
    grid-area: 1 / 2 / 1 / 3;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.updates {
    grid-area: 1 / 3 / 4 / 5;
    border: 3px solid white;
    text-align: center;
    
}

#updatesid {
    padding-top: 5px;
    line-height: 0px;
}

.updcontainer {
    margin-left: 10%;
    padding-right: 10%;
    padding-top: 0%;
    font-size: 18px;
    text-align: left;
    height: 300px;
    overflow: auto;
}

.art {
    grid-area: 2 / 1 / 3 / 2;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shrines {
    grid-area: 2 / 2 / 3 / 3;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sitemap {
    grid-area: 3 / 1 / 4 / 2;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile {
    grid-area: 3 / 2 / 4 / 3;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eighth {
    grid-area: 4 / 1 / 5 / 5;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: 1 / 1 / 2 / 2;
    border: 3px solid white;
}

.interests {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: 2 / 1 / 3 / 2;
    border: 3px solid white;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: 3 / 1 / 4 / 2;
    border: 3px solid white;
}

/* for inside the main content box in About */

.blurb {
    display: flex;
    justify-content: left;
    grid-area: 1 / 2 / 4 / 5;
    border: 3px solid white;
}

iframe {
    border: none;
}