:root {
  --background-color: #041421;
  --text-color: #86b9b0;

  --header-background: white;
  --header-text: #86b9b0;
}
body,
h1,
h2,
p,
ul {
  margin: 0;
  padding: 0;
}

a:link {
  color: #f77f00;
}

a:visited {
  color: #f70400;
}

a:active {
  color: #00c2f7;
}
a:hover {
  color: #f70098;
}

header {
  background: #3b7480;
  color: white;
  padding: 1rem;
  text-align: center;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--background-color);
}

section.certificates {
  background: #041421;
  padding: 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 5px #86b9b0;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;

  overflow-y: scroll;
  scrollbar-width: none;

  em.Bold {
    font-weight: bold;
    color: #4cc9f0;
  }

  p.Cert {
    padding-bottom: 0px;
    font-size: 45px;
    font-weight: bold;
    color: var(--text-color);
    font-family: Arial, sans-serif;
    text-decoration: underline;
    align-content: center;
  }

  p.Semester {
    padding-bottom: 0px;
    font-size: 23px;
    font-weight: bold;
    color: #90d2ed;
    font-family: Arial, sans-serif;
  }

  p.Text {
    color: var(--text-color);
    float: center;
    margin-right: 10px;
    padding: 3px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
}

section.certificates:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

footer {
  bottom: 0;
  left: 0;
  width: 99.75%;
  text-align: center;
  padding: 2px;
  background: #35424a;
  color: var(--text-color);
  position: fixed;
}
