@import "global.css";
@import "header.css";
@import "footer.css";

.foto {
  width: 80%;
  height: auto;
  margin: 1rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
}

.foto img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-position: top;
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: 0 0 5px #00ff00, 0 0 10px #fff, 0 0 15px #ff00ff;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info {
  background-color: var(--color-dark);
  margin: 0 auto;
  max-width: 1200px;
  color: #fff;
  border-radius: 0.7rem;
}

.contact {
  margin: 0 auto;
  text-align: center;
  padding: 1.25rem 2rem;
}

.typing-container {
  font-family: "Courier New", Courier, monospace;
  background-color: var(--color-dark);
  font-size: 1.5rem;
  padding: 0.5rem;
  height: 3rem;
  color: #00ff00;
  text-shadow: 0 0 5px #fff, 0 0 7px #ff00ff;
}

.typing-text {
  padding: 0.1rem;
  border-right: 2px solid #00ff00;
  animation: typing 2s steps(30, end) infinite, blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.title-name {
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 2rem;
}

.title {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.8rem;
}

.text {
  margin: 1.25rem;
}

.download-link {
  display: inline-block;
  background-color: #000000;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0.3rem;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 5px #00ff00, 0 0 10px #fff, 0 0 15px #ff00ff;
}

.download-link:hover {
  opacity: 0.7;
}

.form button {
  display: inline-block;
  background-color: #000000;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 0.3rem;
  padding: 0.8rem 1.5rem;
  margin-top: 1.25rem;
  border: none;
  cursor: pointer;
}

.skills {
  margin: 1.25rem;
}

.badge {
  margin: 0.7rem;
}

@media (min-width: 600px) {
}

@media (min-width: 900px) {
  .foto {
    width: 30%;
  }

  .info {
    display: flex;
    justify-content: center;
    align-items: top;
    margin: 0 auto;
    gap: 1.25rem;
  }

  .contact {
    width: calc(50% - 0.7rem);
  }
}
