html, body{
  height: 100%;
  width: 100%;
  margin: 0px;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}

#contentpage{
    height:70%;
    display: flex;
    align-items: stretch;
}

#homepage{
    flex-direction: column;
    padding:50px;
}

#navbar_image{
    width:600px;
}

#homebox{
    position: relative;
    border-radius: 25px;
    background-color:whitesmoke;
    height: fit-content;
    width: 60%;
    text-align: left;
    padding:20px;
    margin: 10px;
    margin-top: 100px;
}

#stamps{
    position: relative;
    border-radius: 25px;
    background-color:whitesmoke;
    height: fit-content;
    width: 60%;
    text-align: left;
    padding:20px;
    margin: 10px;
    margin-bottom:40px;
}

.dottedbox{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-width: 2px;
    width:auto;
    height: auto;
    border-color:rgb(160, 190, 216);
    border-style:dashed;
    padding: 20px;
}

.dottedbox_vertical{
    overflow-y: scroll;
    display: flex;
    justify-content: left;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    border-width: 2px;
    width:auto;
    height: 50%;
    border-color:rgb(160, 190, 216);
    border-style:dashed;
    padding: 20px;
}

@keyframes test {
    0% {width: 0%; height: 0%;}
    100% {width:600px; height: 80%;}
}

#navbar{
    position: relative;
    display: flex;
    border-radius: 25px;
    background-color:whitesmoke;
    height: fit-content;
    width: 60%;
    text-align: left;
    padding:20px;
    margin: 10px;
}

#introtext{
    margin-left: 20px;
    margin-right: 20px;
}

#small_images{
    margin: auto;
    width: 500px;
    height: auto;
    padding: 20px;
}

p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
}

h3{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}

h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px;
}

hr{
    width: 75%;
}

.tinytext{
    font-size: x-small;
}


#sidebar{
    overflow-y: hidden;
    border-radius: 25px;
    margin: 10px;
    background-color:whitesmoke;
    z-index: 100;
    height: 80%;
    width: 300px;
    padding:20px;
}

#contentbox{
    animation-timing-function: ease;
    animation-name: test;
    animation-duration: 1.5s;
    border-radius: 25px;
    margin: auto;
    background-color:whitesmoke;
    z-index: 100;
    height: 80%;
    width: 600px;
    padding:20px;
    margin: 10px;
}

button{
    font-size: 15px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: auto;
    height: auto;
    padding: 10px;
    background-color: rgb(189, 216, 239);
    color: rgb(0, 0, 0);
    border-width:3px;
    border-style:outset;
    border-radius: 5px;
    margin: 3px;
}

iframe{
    border-style:none;
    width: 100%;
    height:100%;
    margin: auto;
    padding: auto;
}

button:hover{
    font-size: 15px;
    width: auto;
    height: auto;
    padding: 10px;
    background-color: rgb(143, 173, 198);
    color: rgb(255, 248, 248);
    border-width:3px;
    border-style:outset;
    border-radius: 5px;
    margin: 3px;
}

body.description{
    display:flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

p.description{
}