:root {
    --background-color: #424242;
}

/* Fonts */
@font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Roboto", sans-serif;
    src: url("/assets/fonts/Roboto-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
  }

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
}

h1 {
    font-size: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 1.3em
}

h3 {
    text-align: center;
    font-size: 1.2em;
    padding: 10px 0;
    font-weight: 400
}

a,
a:visited,
body,
p {
    font-family: "Roboto", sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    color: white;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
}

a:focus,
a:hover {
    color: orange;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: all ease 500ms;
    font-weight: 400;
}

.document-card {
    max-width: 380px;
    padding: 10px;
    margin: 25px 0;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

@media only screen and (min-width: 1600px) {
    .document-card {
        max-width: 1200px
    }
}
@media only screen and (max-width: 1599px) {
    .document-card {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .document-card {
        max-width: 960px
    }
}

@media only screen and (max-width: 960px) {
    .document-card {
        max-width: 550px
    }
}

@media only screen and (max-width: 550px) {
    .document-card {
        max-width: 380px
    }
}

@media only screen and (max-width: 380px) {
    .document-card {
        max-width: 320px;
    }
}

header {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

header img {
    width: 100px;
    border-radius: 55px;
    margin-bottom: 20px;
}

ul {
    padding-top: 10px;
}

li {
    list-style-type: disc;
    margin-left: 20px;
    padding-bottom: 10px
}

li a {
    text-decoration: underline;
    font-weight: 300
}

section {
    width: 100%
}

footer {
    font-size: 0.8em;
    padding-top: 10px;
}