*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  border: 0;
  outline: 0;
}

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

address {
  font-style: normal;
}

@font-face {
  font-family: "Comfortaa";
  font-style: normal;
  src: url(../fonts/Comfortaa-VariableFont_wght.ttf);
}
body {
  background-color: #1b1d1e;
  font-family: "Comfortaa", sans-serif;
}

.container {
  max-width: 1200px;
  min-width: 320px;
  padding: 0 15px;
  margin: 0 auto;
  outline: 2px solid rgb(0, 255, 64);
}

.header {
  margin-bottom: 55px;
  background-color: #292c2e;
}

.header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.header__name {
  font-size: 21px;
  color: #c13b00;
}

.header__links {
  display: flex;
  gap: 15px;
}

.header__link {
  font-size: 15px;
}

p {
  color: #8a9597;
}

a {
  color: #ff995e;
}

.instructions {
  padding-bottom: 55px;
}

.instructions__link {
  font-size: 16px;
  padding: 5px;
  border: 2px solid #4b5456;
  border-radius: 8px;
}

.footer__wrap {
  margin-top: auto;
}

.footer__name {
  text-align: center;
  font-size: 15px;
}