* {
  box-sizing: border-box;
}
body {
  background-color: #fb7fc3;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: sans-serif;
}

h1 {
  color: white;
  margin-bottom: 60px;
}

.everything {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto 0;
}

.title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  color: white;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 60px;
}

.circles {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    width 0.25s ease,
    height 0.25s ease;
}

.circles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.circles:hover {
  width: 140px;
  height: 140px;
}

.circles:hover::before {
  opacity: 1;
}

.project-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
}

.project-title {
  position: relative;
  z-index: 1;
  opacity: 0;
  color: white;
  font-weight: bold;
  font-size: 0;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  transition:
    opacity 0.25s ease,
    font-size 0.25s ease;
}

.circles:hover .project-title {
  opacity: 1;
  font-size: 14px;
}

.contact-link {
  display: inline-block;
  margin: 40px 0;
  padding: 12px 24px;
  background-color: white;
  color: #fb7fc3;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

.contact-link:hover {
  background-color: #333;
  color: white;
}

.form-container {
  background: white;
  padding: 60px 50px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 420px;
  margin-top: 100px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-size: 18px;
  color: #333;
}

.form-group input[type="text"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.form-container input[type="submit"] {
  margin-top: 12px;
  padding: 14px;
  background-color: #fb7fc3;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.thanks-message {
  color: white;
  font-size: 32px;
  margin: 0 0 32px;
}

.home-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: white;
  color: #fb7fc3;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

.home-link:hover {
  background: #333;
  color: white;
}
