body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.main {
    display: flex;
    height: 100%;
    // padding-bottom: 0px;
}

#navigation {   
    list-style-type: none;
    text-align: left;
}

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

.nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.8s ease;
    display: flex;
    align-items: center;
}

.nav a:hover {
    background-color: white;
    color: black;
}

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

.work a {
    text-decoration: none;
    color: white;
    background-color: black;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 10px;
    transition: background-color 0.6s ease;
    display: flex;
    align-items: center;
}

.work a:hover {
    background-color: white;
    color: black;
    border: solid 1px black;
}

.current {
    border: solid 2px white;
}

.left-side {
    width: 35%;
    background-color: black;
}

.right-side {
    width: 65%;
    background-color: whitesmoke;
    line-height: 30px;
}

.right-side1 {
    width: 65%;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    line-height: 30px;
}

.right-side1 h1 {
    font-size: 80px;
    color: black;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 10px;
    font-family: cursive;
}

.right-side1 p {
    font-size: 20px;
    color: black;
    margin-right: 10px;
    text-align: justify;
    text-align: center;
    font-family: monospace;
    margin-left: 10px;
}

.right-side h2 {
    text-align: center;
    font-size: 50px;
    color: black;
    margin-bottom: 20px;
    font-family: cursive;
}

.right-side p {
    color: black;
    margin-bottom: 20px;
    font-family: monospace;
    padding-left: 50px;
    text-align: justify;
    padding-right: 20px;
}

h3 {
    margin-left: 35px;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    font-family: cursive;
    
}

form {
  width: 80%;
    background-color: whitesmoke;
    padding-left: 50px;
}

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

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: white;
    color: black;
    padding: 6px 16px;
    border: solid 1px black;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
}

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

.forward {
    display: inline-block;
    padding-left: 50px;
}

.forward a {
    background-color: white;
    color: black;
    padding: 12px 22px;
    border-radius: 20px;
    border: solid 1px black;
    
    text-decoration: none;
    border: solid 1px black;
    font-size: 16px;
    transition: background-color 0.6s ease;
}

.forward a:hover {
    background-color: black;
    color: white;
    padding: 12px 22px;
    border-radius: 20px;
    border: solid 1px black;
}

.forward1 {
    display: inline-block;
}

.forward1 a {
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.bottomright {
  position: absolute;
  bottom: 11px;
  right: 45px;
  font-size: 18px;
}

.bottomright1 {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 18px;
}

.forward2 {
    display: inline-block;
}

.forward2 a {
    color: black;
    text-decoration: none;
    font-size: 12px;
    color: black;
    padding: 3px 3px;
    border-radius: 20px;
    border: solid 1px black;      
}

.forward3 a {
    text-decoration: none;   
}

@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;
}
}