body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    overflow-x: auto;
    background-color: #F0E68C;
}

.ind {
    background-image: url('./images/VersaillesBackground.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

main {
    height: 90vh;
    position: relative;
    padding: 0px 10px;
}

.content {
    display: flex;
    flex-direction: column;
    margin-left: 110px;
    padding: 0px 10px;
}

.row {
    display: flex;
}
  
.column {
    padding: 5px;
}

.home {
    max-width: 800px;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 95px;
}

footer {
    position: relative;
    font-size: 20px;
}

.side_nav {
    width: 100px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .4);
    overflow-x: hidden;
    padding-top: 20px;
}
.side_nav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: #000000;
    display: block;
}

p {
    width: 700px;
}

.side_nav a:hover {
    color: #7CFC00;
}
  
.side_nav a:active {
    color: #FF00FF;
}

@media screen and (max-height: 450px) {
    .side_nav {padding-top: 15px;}
    .side_nav a {font-size: 18px;}
}

#rand_img {
    border: 5px solid #000000;
}

* {
    font-family: 'Playfair Display', serif;
}