html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: black;
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

#skip-links {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#skip-links a:focus{
    position: static;
    width: auto;
    height: auto;
    color: black;
} 

#wrapper {
    margin: 0 auto;
    width: 960px;
    padding: 10px;
    border: solid 1px black;
    border-radius: 12px;
    background-color: white;
}

#header {
    text-align: center;
}

#header h1 {
    font-size: 36px;
    color: #07636a;
}

#header h3 {
    font-size: 18px;
    font-style: italic;
    color: darkorange;
}

.primarynav {
    display: inline-block;
    margin: 0 10px;
}

.primarynav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f0f0f0;
    transition: background-color 0.6s ease;
    display: flex;
    align-items: center;
}

.primarynav a:hover {
    background-color: dimgray;
    color: white;
}

.primarynav a i.material-icons {
    margin-right: 5px;
}

.current {
    border: solid 2px #07636a;
}

#main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 30px;
}

#article {
    flex: 0 0 100%;
    margin-right: 10px;
    text-align: justify;
}

.image-container {
    text-align: center;
}

.image-container img {
    display: inline-block;
    border: 1px solid black;
    border-radius: 12px;
}

#article h1{
    text-align: center;
    text-decoration: underline;
    font-size: 25px;
    color: #07636a;
    margin-bottom: 10px;
}

.right-aligned {
    float: right;
    margin-left: 10px;
}

table {
    width: 100%;
    height: 80%;
}

td, th {
    text-align: center;
    background-color: whitesmoke;
    border: 1px solid black;
    padding: 8px;
}

th {
    background-color: antiquewhite;
    text-decoration: underline;
    font-size: 18px;
}

form {
    width: 100%;
}

fieldset {
    border: 1px solid black;
    border-radius: 8px;
    padding: 20px;
    background-color: white;
}

input[type="text"],
textarea {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
    border: 0.5px solid black;
    background-color: whitesmoke;
    border-radius: 4px;
    font-size: 1em;
}

textarea {
  height: 150px;
}

input[type="radio"] {
  margin-left: 15px;
}

input[type="submit"],
input[type="reset"] {
    background-color: #07636a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: darkorange;
    color: black;
}

.forward {
    display: inline-block;
}

.forward a {
    color: white;
    transition: background-color 0.6s ease;
}

.forward a:hover {
    background-color: darkorange;
    color: black;
    padding: 4px 4px;
    border-radius: 20px;
}

.forward1 {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
}

.forward1 a {
    text-decoration: none;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #07636a;
    transition: background-color 0.6s ease;
    display: flex;
}

.forward1 a:hover {
    background-color: darkorange;
    color: black;
}

.forward2 {
    display: inline-block;
    margin: 0 10px;
}

.forward2 a {
    text-decoration: none;
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    background-color: #07636a;
    transition: background-color 0.6s ease;
    display: flex;
}

.forward2 a:hover {
    background-color: darkorange;
    color: black;
}

#footer {
    text-align: center;
    margin-top: 10px;
    padding: 1px;
    border-radius: 10px;
    background-color: #07636a;
    color: white;
    font-size: 15px;
}

@media screen and (max-width: 960px){
.wrapper {
    width:640px;
}
}

@media screen and (max-width: 640px) {
.wrapper {
    width: 320px;
}
    
h1, h2, h3, h4, p {
    word-wrap: break-word;
}
    
#header{
    padding: 0;
}
}