@font-face {
  font-family: "berkeley_monobold";
  src: url("https://adwinang.s3.ap-southeast-1.amazonaws.com/fonts/BerkeleyMono-Bold.woff")
      format("woff2"),
    url("https://adwinang.s3.ap-southeast-1.amazonaws.com/fonts/BerkeleyMono-Bold.woff2")
      format("woff"),
    url("BerkeleyMono-Bold.woff2") format("woff2"),
    url("BerkeleyMono-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "berkeley_monoregular";
  src: url("https://adwinang.s3.ap-southeast-1.amazonaws.com/fonts/BerkeleyMono-Regular.woff")
      format("woff2"),
    url("https://adwinang.s3.ap-southeast-1.amazonaws.com/fonts/BerkeleyMono-Regular.woff2")
      format("woff"),
    url("BerkeleyMono-Regular.woff") format("woff"),
    url("BerkeleyMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #171c18;
}

.centre {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.border {
  border: 2px solid;
}

/* Grid */
.grid-container {
  display: grid;
  grid-template-columns: auto auto;
}

.grid-item {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid;
  border-color: 171C18;
}

/* 
font size
1.618rem
1rem
*/

body {
  font-size: 1rem;
  font-family: berkeley_monoregular;
  text-transform: uppercase;
}

h1 {
  font-size: 1.618rem;
  font-family: berkeley_monobold;
  margin-top: 0.618rem;
  margin-bottom: 0.618rem;
}

section {
  border-top: 1px solid;
  border-color: 171C18;
}

.logo {
  border-color: 171C18;
  border: 1px solid;
  padding-left: 1rem;
  padding-right: 1rem;
}

h2 {
  font-size: 1.2rem;
  border-color: 171C18;
  border-bottom: 1px solid;
  margin-bottom: 2px;
  margin-top: 2px;
}
h3 {
  font-size: 1rem;
}

a {
  text-decoration: underline;
}

.details > p,
.details > span,
.details > h4,
.details > h5 {
  font-weight: normal;
  display: inline;
  font-family: berkeley_monoregular;
  font-size: 1rem;
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.description {
  font-family: berkeley_monobold;
  padding-right: 2rem;
}

p {
  font-size: 1rem;
}

a:visited {
  color: #171c18;
}

@media screen and (max-width: 600px) {
  html {
    font-size: 62.5%;
    -webkit-text-size-adjust: none;
  }
  .details > p,
  .details > span,
  .details > h4,
  .details > h5 {
    font-weight: normal;
    display: inline;
    font-family: berkeley_monoregular;
    font-size: 1em;
  }

  .container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
  }
}
