@font-face {
  font-family: 'Adequate';
  font-weight: normal;
  src: url("../font/Adequate-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Adequate';
  font-weight: bold;
  src: url("../font/Adequate-Bold.ttf") format("truetype");
}

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea,
select {
  *font-size: 100%;
}

header {
  font-size: 1.5rem;
  background-color: #830303;
  width: 100%;
}

@media (max-width: calc(768px - 1px)) {
  header {
    width: 100%;
  }
}

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

a:visited {
  color: white;
}

.headerWrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 50px 30px;
  color: white;
}

.headerWrapper .imgLogo {
  display: flex;
  align-items: center;
}

@media (max-width: calc(768px - 1px)) {
  .headerWrapper .imgLogo {
    margin-top: -15px;
  }
}

.headerWrapper .imgLogo img {
  width: 300px;
  object-fit: initial;
}

@media (max-width: calc(768px - 1px)) {
  .headerWrapper .imgLogo img {
    width: 225px;
  }
}

.headerWrapper ul {
  display: flex;
  margin-left: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: calc(1024px - 1px)) {
  .headerWrapper ul {
    margin-left: 0;
    justify-content: center;
  }
}

.headerWrapper li {
  list-style-type: none;
  text-shadow: 0px 0px 4px black;
}

/* .headerWrapper li:not(:last-child) {
  padding-right: 40px;
} */

.headerWrapper li a:hover {
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: calc(1024px - 1px)) {
  .headerWrapper {
    flex-direction: column;
  }
}

.imagesContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

@media (max-width: calc(768px - 1px)) {
  .imagesContainer {
    padding: 15px 0;
  }
}

@media all and (min-width: 768px) and (max-width: calc(1024px - 1px)) {
  .imagesContainer {
    padding: 30px 15px;
  }
}

.imagesContainer img {
  object-fit: cover;
  width: calc(33% - 20px * 2);
  max-height: 270px;
  padding: 20px;
}

@media (max-width: calc(768px - 1px)) {
  .imagesContainer img {
    padding: 15px 0;
    max-height: 118px;
  }
}

@media (max-width: calc(1024px - 1px)) {
  .imagesContainer img {
    width: calc(50% - 15px * 2);
  }
}

@media all and (min-width: 768px) and (max-width: calc(1024px - 1px)) {
  .imagesContainer img {
    padding: 15px;
    max-height: 270px;
  }
}

footer {
  background-color: #830303;
  padding: 50px 10px;
  text-align: center;
  color: white;
}

body {
  font-family: Adequate;
  font-size: 16px;
  margin: 0;
}

header {
  background-color: #830303;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 50px 30px;
  color: #830303;
  text-align: center;
  padding-bottom: 0;
}

@media (max-width: calc(768px - 1px)) {
  h1 {
    font-size: 2.2rem;
  }
}