* {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: underline;
  color: inherit;
}
a:hover,
a:focus,
a:active {
  font-style: italic;
}
body {
  transition: 0.5s ease-in-out all;
  background-color: #eae9e9;
}
header {
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
header .logo {
  height: 12vh;
}
header .menuBtn {
  position: absolute;
  left: 5vh;
  height: 5vh;
  width: 5vh;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  opacity: 1 !important;
}
header .menuBtn .menuImg {
  height: inherit;
  width: inherit;
  opacity: 1 !important;
}
header .menuBtn .sidebar {
  position: fixed;
  top: 0px;
  right: 110vw;
  padding: 2.5vw;
  height: 100%;
  background-color: #ffffff;
  transition: 0.5s ease-in-out all;
  opacity: 1 !important;
  padding-top: 5vh;
  z-index: 100;
}
header .menuBtn .sidebar .navigator {
  display: flex;
  text-decoration: none;
  color: black;
  fill: black;
  height: 5vh;
  justify-content: center;
}
header .menuBtn .sidebar .navigator svg {
  height: 50%;
}
header .menuBtn .sidebar .navigator h2 {
  display: flex;
  align-items: center;
  height: 100%;
}
header .menuBtn .sidebar .navigator.actual {
  color: #154066;
  fill: #154066;
}
header .menuBtn .sidebar .navigator:hover,
header .menuBtn .sidebar .navigator:focus {
  font-style: italic;
  text-decoration: underline;
}
header .menuBtn:hover,
header .menuBtn:focus {
  opacity: 1 !important;
}
header .menuBtn:hover .sidebar,
header .menuBtn:focus .sidebar {
  translate: calc(100% + 10vw);
  opacity: 1 !important;
}
.my-body {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.my-body .textfield {
  background-color: #154066;
  color: white;
  padding: 5vmax 5vw;
  display: flex;
  justify-content: center;
  width: auto;
  min-width: calc(100vw - 10vmax);
}
.my-body .textfield .text,
.my-body .textfield .underTitle {
  padding: 2vw 0;
  max-width: 80vmax;
}
.my-body .imageGallery {
  display: flex;
}
.my-body .imageGallery .imgView {
  width: 600px;
  height: 200px;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  resize: both;
  overflow: auto;
}
.my-body .imageGallery .imgView .actualImg {
  position: relative;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
}
.my-body .imageGallery .imgView .actualImg img {
  height: 100%;
  width: 100%;
}
@media (max-aspect-ratio: 3/4) {
  .sidebar {
    width: 75%;
  }
}
