/* This is the stuff for the Windows 98 like outside*/
html {
    background-color: rgb(0, 221, 188);
}
body {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 80vw;
    height:auto;
    border-width: 5px;
    border-top-color: white;
    border-left-color: white;
    border-right-color: gray;
    border-bottom-color: gray;
    border-style: solid;
    background-color: lightgray;
    min-width: 350px;
}
h1.window_header {
    background: linear-gradient(to right,blue,rgb(50,167,255));
    padding-left: 10px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    margin-top: 0px;
}
img.window_headerbutton {
    height:32px;
    background-color: lightgray;
    border-top-color: white;
    border-left-color: white;
    border-right-color: gray;
    border-bottom-color: gray;
    border-style: solid;
    float:inline-end
}
.window_headerbutton:hover{
    border-right-color: white;
    border-bottom-color: white;
    border-top-color: gray;
    border-left-color: gray;
}
p.window_hyperlink {
    border-bottom-color: white;
    border-right-color: white;
    border-left-color: gray;
    border-top-color: gray;
    border-style: solid;
    margin: 5px;
    padding: 2px;
    text-align: left;
}
div.window_content {
    background-color: white;
    border-bottom-color: white;
    border-right-color: white;
    border-left-color: gray;
    border-top-color: gray;
    border-style: solid;
    margin: 5px;
    overflow-wrap: anywhere;
    overflow-y: auto;
    overflow-x: auto;
    max-height: 83vh;
}
h2 {
    text-align: center;
}
p {
    text-align: center;
}

/*This is the stuff for the interior webpage*/
div.website_body{
    background-color: black;
    padding: 10px;
}
h2.website_header{
    color: white;
    margin: 0px;
    text-align: center;
}
p.website_subheader{
    color: white;
    margin: 0px;
    margin-top: 5px;
    text-align: center;
}
p.website_text{
    color: white;
    text-align: left;
    margin: 5px;
    text-indent: 30px;
}