body {
    margin-top: 60px;
    margin-bottom: 200px;
    font-family: Tahoma, sans-serif;
    background-color: #ddd;
    color: #111;
}

h1 {
    font-size: 30px;
    padding: 100px 0 20px 0;
}

h1,h2 {
    text-align: center;
}

h4 {
    margin-bottom: 0;
    margin-top: 50px;
}

main img {

    max-width: 400px;
    width: 80%;
    margin: 0 auto 40px auto;
    margin: auto;
    margin-bottom: 40px;
    padding: 20px;
}

main div img {
    margin: auto;
}

li {
    margin-bottom: 20px;
}

a {
    color: #2a603a;
    text-decoration: none;
}

header button {
    color: #eee;
    background-color: #222;
    height: 35px;
    border: none;
    border-radius: 3px;
    margin-right: 10px;
}

.img-paragraph {
    display: flex;
    flex-direction: column;
}



header {
    position: fixed;
/*    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.15);*/
    width: 100%;
    height: 60px;
    z-index: 1;
    top: 0;
    left: 0;
/*    background-color: #ffffff00;*/
    background-color: #2a603a;
    font-family: "arial", sans-serif;
    color: #eee
}

.container {
    max-width: 500px;
    margin: auto;
}

header .container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: row;
  display: flex;
  width: 95%;
  max-width: unset;
}

header .container img{
    max-width: 100%;
    max-height: 60px;
    margin-right: 6px;
    margin-left: 10px;
}

header .container a {
    display: flex;
    color: #fff;
}

section {
    padding: 30px 15px;

}

section .container {
    display: flex;
    flex-direction: column;
}

.container#main-container {
    background-color: #00000011;
    padding-bottom: 100px;
}

.container section:nth-child(odd) {
    background-color: #ffffff11;
}



#site-name {
    display: none;
}

/* Toggle Switch Styles ---------------------------------------------------------------------------------------- */

/* From Uiverse.io by JustCode14 */
/* Theme Switch */
/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 4em;
  height: 2.2em;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2a2a;
  transition: 0.4s;
  border-radius: 30px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.2em;
  width: 1.2em;
  border-radius: 20px;
  left: 0.5em;
  bottom: 0.5em;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
  box-shadow: inset 8px -4px 0px 0px #fff;
}

.switch input:checked + .slider {
  background-color: #00a6ff;
}

.switch input:checked + .slider:before {
  transform: translateX(1.8em);
  box-shadow: inset 15px -4px 0px 15px #ffcf48;
}

.star {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 5px;
  transition: all 0.4s;
  height: 5px;
}

.star_1 {
  left: 2.5em;
  top: 0.5em;
}

.star_2 {
  left: 2.2em;
  top: 1.2em;
}

.star_3 {
  left: 3em;
  top: 0.9em;
}

.switch input:checked ~ .slider .star {
  opacity: 0;
}

.cloud {
  width: 3.5em;
  position: absolute;
  bottom: -1.4em;
  left: -1.1em;
  opacity: 0;
  transition: all 0.4s;
}

.switch input:checked ~ .slider .cloud {
  opacity: 1;
}

/* Toggle switch Styles end ------------------------------------------------------------------------------------ */

@media screen and (min-width: 576px) {
    .container {
        max-width: 800px;
    }
    #site-name {
        display: block;
    }
    #site-initials {
        display: none;
    }
    main img {
        max-width: 700px;
    }


}

@media screen and (min-width: 960px) {
    .container {
        max-width: 1200px;
    }
    section .img-paragraph {
        display: flex;
        flex-direction: row;
    }
    main img.vertical {
        max-height: 400px;
        width: auto;
    }
}

@media print {
    body {
        color: #000;
        background-color: #fff;
        margin: 0;
    }
    .container {
        max-width: 700px;
    }
    header {
        display: none;
    }
    section {
        page-break-after: auto;
        page-break-inside: avoid;
    } /* page-break-after works, as well */
    section#contents {
        display: none;
        padding: 0;
    }
    h1 {
        padding: 0;
    }

    section#first {
        padding: 0;
    }
/*    section img {
        display: none;
    }*/

}
