/* Minimalist programmer contact block */
.contact-minimal {
  margin-bottom: 2em;
}

.contact-pre {
  background: none;
  border: none;
  color: #b0b0b0;
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  white-space: pre-line;
}

.contact-pre a {
  color: #01b799;
  text-decoration: underline;
  background: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin: 0;
}

.contact-pre a:hover {
  color: #4affdf;
  text-decoration: none;
}

/* Contact section styles */
.contact-section {
  margin-bottom: 2em;
}

.contact-title {
  color: #01b799;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  text-align: left;
  letter-spacing: 1px;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-bottom: 0.5em;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  background: rgba(1, 183, 153, 0.08);
  border-radius: 6px;
  padding: 6px 14px 6px 8px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  font-weight: 500;
}

.contact-link:hover {
  background: #01b799;
  color: #1e4258;
}

.contact-icon {
  font-size: 1.2em;
  margin-right: 8px;
  display: inline-block;
  width: 1.3em;
  text-align: center;
}

.button {
  background-color: #23272f;
  color: #01b799;
  border: 2px solid #01b799;
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.button:hover {
  background-color: #01b799;
  color: #23272f;
}

body {
  margin: 0px;
  background-color: #1e4258;
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  color: #e0e0e0;
}

.background {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.content {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 32px 24px;
  background: rgba(30, 66, 88, 0.97);
  border-radius: 10px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 0 24px 0;
  border-bottom: 1px solid #01b79944;
  margin-bottom: 32px;
}

.header .square {
  margin-left: 0;
  margin-right: 24px;
  height: 50px;
  width: 50px;
}

.header .name {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #e0e0e0;
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
.name_container_child {
  font-family: "Fira Mono", "Consolas", "Menlo", monospace;
  color: #e0e0e0;
  text-align: center;
  margin: 0;
}

.square {
  margin-left: -180px;
  height: 50px;
  width: 50px;
  background-color: #01b799;
}

.square:hover {
  background-color: #4affdf;
  animation: rotation 5s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.name_container {
  display: flex;
  height: auto;
}

.name_container_child {
  margin: auto;
  min-width: 50px;
  padding-left: 10px;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
}
