:root {
  --primColor: #dcdcdc;
  --secoColor: #555555;
  --cornerRad: 4px;
}

details {
  margin: 50px;
}
summary {
  writing-mode: vertical-lr;
  text-align: center;
  padding: 15px 15px;
  width: 23px;
  height: 17px;
  background-color: var(--primColor);
  border: 2px solid var(--secoColor);
  border-radius: var(--cornerRad);
  color: var(--secoColor);
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: transform 200ms ease-in-out 0s;
}
summary::before,
summary::after {
  position: static;
  top: 0;
  left: 0;
}
summary::before {
  content: "";
}
summary::after {
  content: "III";
  letter-spacing: -1px;
}
summary:hover {
  transform: scale(1.1);
}
summary::marker {
  font-size: 0;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] .menu {
  animation-name: menuAnim;
}
details[open] summary::before {
  content: "X";
}
details[open] summary::after {
  content: "";
}
.menu {
  height: 0;
  width: fit-content;
  border-radius: var(--cornerRad);
  background-color: var(--primColor);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  animation: closeMenu 300ms ease-in-out forwards;
  
}
.menu a {
  padding: 0px px;
  margin: 0 10px;
  color: var(--secoColor);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-align: left;
  transition: filter 200ms linear 0s;
}
.menu a:nth-of-type(1) {
  padding-top: 24px;
}
.menu a:nth-last-of-type(1) {
  border-bottom: none;
}
.menu a:hover {
  filter: brightness(200%);
}
details::before {
  content: " ";
  color: var(--secoColor);
  position: absolute;
  margin-left: 80px;
  padding: 10px 10px;
  opacity: 0.4;
}
details[open]::before {
  animation: fadeMe 300ms linear forwards;
}
@keyframes menuAnim {
  0% {
    height: 0;
  }
  100% {
    height: 250px;
  }
}
@keyframes fadeMe {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

  
body
{
    background-color: aquamarine;
    margin: 0;
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}
.top-container
{
    position: absolute;
    height: 650px;
    background-color: rgb(53, 170, 170);
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}
.intro
{
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 120px;
    font-family: 'Parisienne', cursive;
    font-weight: lighter;
    text-shadow: none;
    color: white;
}
.me-img
{
    position: absolute;
    left:20px;
    height: 200px;
    width:200px;
    top:10px;
    align-items: center;
}
.mid-container
{
    position: relative;
    top:70px;
    margin-top: 0;

}
.bottom-container
{
    position: relative;
    top:125px;
}
.main-img
{
    position: relative;
    left:20px;
    height: 500px;
    width: 500px;
    top:10px;
    align-items: center;
}