body,
html {
  background-color: black;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
  font-family: "Montserrat";
  text-align: center;
}

.column h1 {
    color: white;
  font-size: .75rem;
}


@media only screen and (max-width: 950px) {
    .column h1 {
      display: none;
        overflow: hidden;
        white-space: nowrap;
    }
}

h2 {
  font-size: 1.25rem;
  color: white;
  text-align: center;
}

h3 {
  color: white;
  font-size: 1rem;
  padding-top: 2%;
  text-align: center;
  
}
 
.logo {
  padding: 0.5vw;
  width: 30rem;
}

.socials {
  margin: 0;
  width: 2.5rem;
  vertical-align: middle;
  padding-bottom: 1%;
  padding-right: 2.5%;
}

@media only screen and (max-width: 950px) {
    .socials {
width: 2.5rem;
  padding-bottom: 2%;
    }
}

.socials2 {
  width: 5vw;
  vertical-align: middle;
  padding-bottom: 1vw;
  padding-right: 1vw;
}

.fixed {
  width: 100%;
  margin: auto;
  position: sticky;
  text-align: center;
  background: black;
}

.stickyfoot {
  position: fixed;
  bottom: 0;
  background: rgba(255, 255, 255, 0.25);
  height: 4.5vw;
  width: 100vw;
  z-index: 10000 !important;
}

a:link {
  text-decoration: none;
  color: white;
}

/* visited link */

a:visited {
  color: white;
}

/* mouse over link */

a:hover {
  color: white;
}

/* selected link */

a:active {
  color: white;
}

.me {
  width: 25%;
  padding: 3%;
}

@media only screen and (max-width: 950px) {
    .me {
width: 35%;
}
}

a.contacts:link {
  text-decoration: underline;
}

.commissions {
  padding-bottom: 2vw;
  margin: 10vw;
  width: 80%;
}

.underlined {
  text-decoration: underline;
}

.aboutme {
  text-align:center;
  padding: 5%;
}

.footer {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  overflow: hidden;
}

.footerimage {
  padding-top: .5rem;
  height: 2rem;
}

.container {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 2vw;
  position: relative;
  color: white;
}

.container2 {
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.25);
  left: 12.5%;
  right: 12.5%;
  width: 75%;
  position: inherit;
  color: white;
}

.container2:hover {
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.25);
  left: 10%;
  right: 10%;
  width: 80%;
  position: inherit;
  color: white;
}

.centered {
  padding-right: 1vw;
  padding-left: 1vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5vw;
  background: rgba(0, 0, 0, 0.53);
}

.bottom-right {
  padding-left: 1%;
  padding-right: 1%;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.71);
  position: absolute;
  top: 1%;
  font-family: "Montserrat";
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.topnav {
  background-color: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 15px;
  text-decoration: none;
  font-size: 16px;
}

/* Add an active class to highlight the current page */

.active {
  background-color: #24063e;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */

.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */

.dropdown {
  position: initial;
  float: left;
}

/* Style the dropdown button to fit inside the topnav */

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 15px;
  background-color: inherit;
  font-family: inherit;
}

/* Style the dropdown content (hidden by default) */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.25);
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: white;
}

/* Style the links inside the dropdown */

.dropdown-content a {
  float: none;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

/* Add a dark background on topnav links and the dropdown button on hover */

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #24063e;
  color: rgb(255, 255, 255);
}

/* Add a grey background to dropdown links on hover */

.dropdown-content a:hover {
  background-color: #24063e;
  color: rgb(255, 255, 255);
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */

.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */

@media screen and (max-width: 768px) {
  .topnav a:not(:last-child),
  .dropdown .dropbtn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .topnav a.icon {
    text-align: center;
    display: block;
    float: inherit;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */

@media screen and (max-width: 768px) {
  .topnav.responsive {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive a.icon {
    position: inherit;
    right: 0;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive .dropdown {
    float: none;
  }
}

@media screen and (max-width: 768px) {
  .topnav.responsive .dropdown-content {
    position: relative;
  }
}

@media screen and (max-width: 1200px) {
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Style the Image Used to Trigger the Modal */

.modal_image {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.modal_image:hover:hover {
  opacity: 0.7;
}

/* The Modal (background) */

.modal {
  display: none;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Image) */

.modal-content {
  margin: auto;
  display: block;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */

@media (max-width: 768px) {
  .modal-content {
    max-width: 85%;
  }
}

@media (min-width: 768px) {
  .modal-content {
    width: 60%;
  }
}

@media (min-width: 992px) {
  .modal-content {
    margin-top: 3vw;
    margin-bottom: 2vw;
    object-fit: contain;
    overflow: hidden;
    max-width: 40%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0);
  }
}

.magazine1 {
  width: 50%;
  float: left;
  padding: 2vw;
}

.background {
  margin: 1vw;
  width: 80%;
  padding: 1vw;
  background-color: rgba(255, 255, 255, 0.25);
}

.background3 {
  margin: 1vw;
  width: 50%;
  padding: 1vw;
  background-color: rgba(255, 255, 255, 0.25);
}

.background4 {
  margin-bottom: 2vw;
  margin-left: 25%;
  width: 50%;
  padding: 1vw;
  background-color: rgba(255, 255, 255, 0.25);
}

.background2 {
  margin-left: 4vw;
  padding-top: 0;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 1vw;
}

.row {
  background-color: rgba(255, 255, 255, 0.25);
  width: 100%;
  margin: inherit;
  padding-top: 1%;
  padding-bottom: .1%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.column {
  width: 25%;}

.column2 {
  float: left;
  width: 20%;
}

.row2::after {
  content: "";
  clear: both;
  display: table;
}

.row3::after {
  content: "";
  clear: both;
  display: table;
}

.column3 {
  margin: 1%;
  padding: 1%;
  background-color: rgba(255, 255, 255, 0.25);
  float: left;
  width: 48%;
}

.column4 {
  padding: 1vw;
  width: 44%;
}

.column5 {
  width: 24%;
  padding: 1vw;
}

.row6 {
  background-color: rgba(255, 255, 255, 0.25);
  margin: 2vw;
  display: flex;
  flex-wrap: wrap;
  padding-left: 1vw;
}

/* Create four equal columns that sits next to each other */

.column6 {
  flex: 25%;
  max-width: 33%;
  padding: 10px 5px;
}

.rowcloud {
  display: flex;
  flex-wrap: wrap;
  margin-left: 15%;
}

.columncloud {
  flex: 25%;
  max-width: 40%;
}

.columncloud img {
  margin-top: 1vw;
  padding: 1vw;
  vertical-align: middle;
  width: 100%;
  border-radius: 1rem;
}

.rowgraphic {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
}

.columngraphic img {
  margin-top: 1vw;
  padding: 1vw;
  vertical-align: middle;
  width: 100%;
  border-radius: 1rem;
}

.columngraphic {
  flex: 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .columngraphic {
    flex: 100%;
    max-width: 100%;
  }
}

.column6 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column6 {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column6 {
    flex: 100%;
    max-width: 157vw;
  }
}

.column7 {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 1%;
  width: 30%;
  display: inline-table;
  margin: 1%;
}

.column11 {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 1vw;
  width: 30%;
  display: inline-table;
  margin-left: 14.5%;
}

@media screen and (max-width: 840px) {
  .column7 {
    background-color: rgba(255, 255, 255, 0.25);
    margin: 2.5vw;
    width: 95%;
  }
}

@media screen and (max-width: 700px) {
  .column11 {
    background-color: rgba(255, 255, 255, 0.25);
    margin: 2.5vw;
    width: 95%;
  }
}

.row7::after {
  padding: 1vw;
  content: "";
  clear: both;
  display: table;
  
}

.row11::after {
  padding: 1vw;
  content: "";
  clear: both;
  display: table;
}

.graphicdesignrow {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 1vw;
  border-radius: 1rem;
  margin-bottom: 2vw;
  width: 95%;
  margin-left: 2.5%;
}

.graphics {
  width: 60%;
}

.detailtext {
  padding: 1vw;
  width: 50%;
  display: table-cell;
  vertical-align: top;
}

@media (max-width: 800px) {
  .detailtext {
    text-align: center;
    width: 100%;
    display: inherit;
    padding: 2vw;
  }
}

.crust {
  max-width: 35%;
  padding: 1vw;
  border-radius: 1rem;
}

.single {
  max-width: 45%;
  padding: 1vw;
  border-radius: 1rem;
}

.town {
  max-width: 30%;
  padding: 1vw;
  border-radius: 1rem;
}

.resume {
  width: 100vw;
height: 50vw;
}

@media screen and (max-width: 700px) {
  .resume {
  width: 100vw;
height: 100vw;
}
}
