html, body {
  margin: 0;
  scroll-behavior:smooth;
}

.default {
  height:  -webkit-fill-available;
  background-color: #111111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}


.Content {
  margin: 50px;
}

.Page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Home {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.aboutMe {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.name {

  justify-content: flex-start;
  font-weight: bolder;
  font-size: 60px;

}

.info {
  font-size: 18px;
  font-weight: lighter;
  line-height: 40px;
}

.description {
  width: 50%
}
  
.myImage {

  object-fit: scale-down;
  height: 50vh;
  width: auto;

  background-color: none;
}

.bobona {
  height: 200px;
}

.topnav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #111111;

  position: fixed;
  width: calc(100%);
  padding: 20px 50px;
  margin-left: -50px;

  z-index: 999;
}

.topnav .topnav-items {
  align-items: center;
}

.topnav-items img {
  height: 24px;
  width: 24px;
  margin-left: 20px;
}

.topnav-buttons {
  background-color: none;
  display: flex;
  justify-content: flex-end;
}

.topnav-buttons a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  padding: 10px;

  border-radius: 10px;
  margin: 0px 10px;

}

.topnav-buttons a:hover {
  background-color: #fff;
  color: black;
}

.Work {
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;
  min-height: 100vh;
}


.Work-header {
  font-size: calc(2vw + 2vh + 2vmin);
  width: 100%;
  padding-bottom: 80px;
  justify-content: center;
}

.Work-row {
  display: flex;
  flex-direction: row;
  justify-content: center;

  width: 100%;

  margin:  20px 20px;
}

.Work-cell {
  position: relative;
  display: inline-block;

  cursor: pointer;

  height: 100%;
  width: auto;

  margin: 0px 20px;
}

.Work-image {
  border-radius: 10px;
  height: 100%;
  width: auto;
}

.Work-link  {
  color: none;
}

.Work-cell:hover .Work-cellOverlay {
  opacity: 1;
  transition: 0.3s;
  transition-duration: 0.3s;
}

.Work-cellOverlay { 
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  z-index: 90;
  width: 100%;
  height: 100%;

  border-radius: 10px;

  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  text-align: center;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  transition-duration: 0.3s;
}

.Work-cellOverlayTitle { 

  position: absolute;
  width: 100%;
  top: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 24px;

}
