@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --color1: rgb(34, 7, 91);
  --color2: rgb(98, 61, 218);
  --color3: rgb(150, 161, 235);
  --color4: rgb(128, 14, 137);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  padding: 20px;
  font-size: 20px;
}

a {
  text-decoration: none;
}

input,
textarea {
  border: 1px solid var(--color1);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  font-size: 20px;
}

button {
  border: 1px solid var(--color1);
  border-radius: 10px;
  padding: 10px 30px;
  background-color: black;
  color: white;
  font-size: 25px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0077b5;
  padding: 10px 30px;
  border-radius: 60px;
}

.header .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .menu a {
  font-weight: 600;
  color: black;
}

.content h1 span,
.header span {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: rgb(86, 168, 219, 0.725)
}

.content h1 {
  display: flex;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px;
}

.content .about {
  display: flex;
  justify-content: center;
  width: 70%;
}

.content .about img {
  width: 400px;
  height: 500px;
  border-radius: 50px;
  border: 10px solid #0077b5;
}

.content .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.content .toolbar {
  display: flex;
  gap: 20px;
}

.content .toolbar a {
  background-color: #0077b5;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  box-shadow: 3px 3px 8px 2px black;
  color: black;
}

.section {
  width: 100%;
}

.section .card {
  display: flex;
  align-items: center;
  border: 1px solid black;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
  gap: 40px;
  box-shadow: 3px 3px 8px 2px black;
  background-color: rgba(86, 168, 219, 0.725);
}

.section .card h2 {
  color: black;
}

.section .card .left {
  flex: 3;
}

.section .card .right {
  flex: 2;
}

.section .form-row {
  margin-bottom: 20px;
}

.footer {
  display: flex;
  justify-content: space-around;
  border-top: 1px dotted gray;
}