@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

body {
  font-family: "Roboto Mono", normal;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color:rgb(226, 239, 251)
}


.container {
  display: flex;
  max-width: 1200px;
  margin: auto;
}

.left-column, .right-column {
  background: transparent;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 0 10px 0 rgba(60, 160, 160, 0.40);
}

.left-column {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column; /* Stack the photo and contact info vertically */
}

.right-column {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: left; /* Vertically center the content in the right column */
  font-size: 12px;
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-info h3 {
  margin-top: 20px;
}

.contact-info p a {
  color: #1f035b;
  text-decoration: none;
  font-size: 12px;
  font-family: "Roboto Mono", monospace;
}

.contact-info p a:hover {
  text-decoration: underline;
}
