@font-face {
  font-family: "Sinful";
  src: url("fonts/sinful.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  height: 100%;
}

body {
  background-image: linear-gradient(45deg, #333, #000);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
}

.title {
  font-size: 2em;
}

.title2 {
  font-size: 1.5em;
}

.title3 {
  font-size: 1.17em;
}

/* Rules for the main header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sinful";
  gap: 50px;
  font-size: 24pt;
  color: #fff;
  padding: 5px;
}

/* Rules for the navbox */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
  padding: 5px;
  font-weight: bold;
}

.nav a {
  color: #fff;
}
.nav a:visited {
  color: #fff;
}

.separator {
  color: #ccd;
}

/* Rules for the secondary header (on child pages) */

secondaryHeader {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sinful";
  gap: 50px;
  font-size: 24pt;
  color: #fff;
}

/* Rules for the main content-Root page */
.main-root {
  color: #fff;
    display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.root-elem {
  background-color: #333;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
  color: #fff;
  width: 75%;
  margin: 15px;
  padding: 10px;
  height: 7.5%;
  border: 1px #888 solid;
  border-radius: 0px;
  row-gap: 5px;
  transition: transform 0.2s;
  text-decoration: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}



/* Rules for the team page */

.main-team {
  display: flex;
  justify-content: center;
}

.teammember {
  background-color: #333;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  width: 125px;
  margin: 15px;
  padding: 10px;
  text-align: center;
  border: 1px #888 solid;
  border-radius: 0px;
  row-gap: 5px;
  transition: transform 0.2s;
  text-decoration: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.teammember:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.teammember:visited {
  color: #fff;
}

.teammember img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.main-projects {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project img {
  height: 175px;
  width: 175px;
}
.project {
  background-color: #333;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  color: #fff;
  width: 75%;
  margin: 15px;
  padding: 10px;
  height: 7.5%;
  border: 1px #888 solid;
  border-radius: 0px;
  row-gap: 5px;
  transition: transform 0.2s;
  text-decoration: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.project-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
