/* CSS styles for the header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
}

header h1 {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  font-family: teko, sans-serif;
  font-weight: 600;
}

header img {
  margin: 10px 0;

  width: 50px;
  height: 50px;
}

a {
  text-decoration: none;
  color: #000000;
  font-family: teko, sans-serif;
  font-size: 20px;
  font-weight: 300;
  white-space: nowrap;
}

p {
  margin: 10px 0;
  color: #000000;
  font-family: teko, sans-serif;
  font-size: 20px;
}

p.white {
  color: #ffffff;
  font-family: teko, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
}

.contact {
  padding: 20px;
  margin: 0 auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
}


.contact div {
  margin-bottom: 20px;
  padding: 0 20px 0;
  display: flex;
}

.contact div img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.contact div p {
  margin: 0;
  font-size: 24px;
  font-family: teko, sans-serif;
}

.buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid #ffffff;
  padding: 20px;
  margin: 0 auto;
  background-color: #000000;
}

.buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-family: teko, sans-serif;
  font-weight: 300;
  font-size: 20px;
  white-space: nowrap;
}


.buttons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  margin-left: 20px;
}

.buttons div img {
  width: 30px;
  height: 30px;
  margin-bottom: 1px;
}

.buttons div:last-child {
  margin-right: 0;
}

.about {
  border-top: 1px solid #000000;
  padding: 0 20px;
  margin: 0 auto;
  font-family: teko, sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.about h2 {
  font-size: 25px;
  font-family: teko, sans-serif;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
}

.about p {
  margin-top: 10px;
  font-family: teko, sans-serif;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
}

.save {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.save img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  padding: 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 20px;
  margin: 0 auto;
  border-top: 1px solid #000000;
  background-color: #ffffff;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  width: 35px;
  height: 35px;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

body {
  background-color: #ffffff;
  font-family: teko, sans-serif;
}
 
