@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800&family=Raleway:wght@700&family=Roboto&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.info-text p {
  font-style: italic;
  font-weight: bold;
  color: #606c85;
  margin: 0;
}
.card {
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.bg-yellow {
  background: #fff9dc;
}
.bg-red {
  background: #ffe5e5;
}
.bg-green {
  background: #e5ffe7;
}
.info {
  display: flex;
  margin-bottom: 20px;
}
.info-text h4 {
  margin-bottom: 10px;
}
.info-text {
  margin-left: 40px;
}
.container {
  max-width: 750px;
  margin: 0 auto;
  padding-top: 30px;
}
.avatar {
  width: 200px;
  border-radius: 28px;
  box-shadow: 4px 4px 20px rgb(31, 31, 73);
}
a {
  color: #000;
  text-decoration: none;
  transition: all .2s;
}
a:hover {
  text-decoration: underline;
  font-size: large;
}
a:active {
  color: blue;
}
a:visited {
  color: gray;
}
.btn {
  background: #111;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}
.list {
  padding: 0 20px;
}
.list li {
  color: #86898f;
  margin-bottom: 10px;
}
.link-list {
  list-style: none;
  padding: 0;
}
.link-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.table {
  width: 100%;
}
.table td {
  padding-bottom: 10px;
}
.table td:nth-child(2),
.table td:nth-child(3) {
  color: #86898f;
}
.form h2 {
  text-align: center;
}
.form-group label {
  display: block;
  font-size: 14px;
  color: #86898f;
}

.form-group input,
textarea {
  width: 100%;
  box-sizing: content-box;
  border: none;
  background: transparent;
  border-bottom: 1px solid #ccc;
  color: #000;
  padding: 15px 0 10px;
  outline: none;
  font-family: inherit;
}
.form-row {
  margin-bottom: 10px;
  display: flex;
}
.form-row .form-group {
  margin-right: 20px;
  width: 50%;
}

@media (max-width: 650px) {
  .info {
    display: block;
    text-align: center;
  }
  .form-row {
    display: block;
  }
  .form-row .form-group {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
