@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

:root {
  --site-header-font-size: 1.25rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #deffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Body */

body > header {
  background-color: rgb(72 156 206);
  display: flex;
  justify-content: space-between;
  padding: 15px 1.5625rem;
  font-size: var(--site-header-font-size);
  color: white;
}

body > header h1 {
  font-size: var(--site-header-font-size);
}

body > header ul {
  display: flex;
  column-gap: 0.9375rem;
  text-transform: uppercase;
}

/* Article */

article#profile {
  padding: 1.5625rem 3.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  column-gap: 6.25rem;
  background-color: #7cbfdf;
  margin: 1.25rem;
}

article#profile h1 {
  font-size: 3rem;
  margin-bottom: 0.625rem;
}

article#profile p {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}

article#profile .profile-photo img {
  height: 12.5rem;
  border: 0.1875rem solid #f29222;
  border-radius: 50%;
}

article#profile th {
  text-align: left;
}

article#profile td {
  padding: 0.3125rem 1.25rem;
}

article#profile .actions button {
  padding: 0.625rem;
  border-radius: 10px;
  font-weight: bold;
}

/* Section */

section#edit-form {
  background-color: #7cbfdf;
  margin: 1.25rem;
  padding: 1.25rem;
}

section#edit-form form > div > * {
  display: block;
  width: 100%;
}

section#edit-form form > div {
  margin-bottom: 0.625rem;
}

section#edit-form form > div label {
  margin-bottom: 0.3125rem;
}

section#edit-form input {
  border: 1px solid #ccc;
  font-size: 1.25rem;
}

section#edit-form button {
  background-color: #008000;
  border: none;
  padding: 10px;
  margin-top: 20px;
  color: white;
}

/* Classes */

.contact-button {
  background-color: #0550f9;
  color: white;
  border: 0.125rem solid #0550f9;
}

.resume-button {
  color: green;
  border: 0.125rem solid green;
  background-color: #deffff;
}
