
body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}


.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 10px;
  box-sizing: border-box;
}


.left-panel {
  flex: 1;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.photo-area img {
  width: 100%;
  max-width: 150px;   
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.photo-area h1 {
  font-size: clamp(1em, 5vw, 1.5em); 
  text-align: center;
}


.right-panel {
  flex: 1;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 10px;
  width: 100%;
  max-width: 400px;   
}

.tile {
  padding: clamp(8px, 3vw, 15px);
  text-align: center;
  font-size: clamp(0.8em, 3vw, 1em);
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s;
}

.tile:hover {
  transform: scale(1.05);
}


.cyan { background-color: #00d4d4; }
.pink { background-color: #ff69b4; }
.purple { background-color: #8a2be2; }
.orange { background-color: #ff8c00; }
.dark-purple { background-color: #4b0082; }
.bright-pink { background-color: #ff1493; }


@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    width: 100%;
    padding: 5px;
  }

  .grid {
    grid-template-columns: 1fr; 
    max-width: 100%;
  }

  .tile {
    font-size: 0.9em;
    padding: 10px;
  }
}

