button {background-color:rgb(69, 65, 209); color:rgb(245, 245, 245); font-size:90%; padding: 5%; width: 85%; border-radius: 8px; border: 1px; float: center; margin-top: 2%; margin-bottom: 2%;}
button:active {
background-color: #2d2e7e;
box-shadow: 5px 5px rgb(20, 31, 94);
transform: translateY(4px); 
}

.box {
  width: 200px;
  height: 200px; 
  border-radius: 70%;
  overflow: hidden;
}
.profile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
    margin: 0;
  }
  h1 {
    text-align: center;
  }
  .container {
    width: 85%;
    margin: auto;
    overflow: hidden;
  }
  .images {
    width: 100%;
    height: auto;
  }
  .images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @media (min-width: 250px) {
    .container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2%;
      grid-auto-flow: row dense;
    }
    .imageFlex1 {
      display: grid;
      row-gap: 5px;
    }
    .imageFlex2 {
      display: grid;
      row-gap: 5px;
    }
    .imageFlex3 {
      display: grid;
      row-gap: 5px;
    }
}

.menu{
  width: 200px; height: 35px;
  position: fixed; left: 40px;
  border-radius: 0 0 20px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  font-size: 10px;
}
.menu > span:hover{ 
  border-bottom: 3px solid white; 
  cursor: pointer;
}
