@font-face {
  font-family: testy;
  src: url(./NeueMachina-Light_gwWCZxVuQl.ttf);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
:root {
  --about-me: #117dd7;
  --education: #37353e;
  --Skills: #25211f;
  --Projects: #2c2b3f;
  --Contactme: #2a3026;
}

html,
body {
  height: 100%;
  width: 100%;
}
#header {
  background-color: rgb(27, 27, 27);
  text-align: center;
  padding: 3em;
  color: whitesmoke;
}
h1 {
  font-family: testy;
  padding: 15px;
  font-size: 3em;
}
#container {
  background-color: rgb(85, 85, 85);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.box {
  width: 50%;
  background-color: aquamarine;
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
}
h2 {
  color: white;
  margin-bottom: 1em;
  text-transform: uppercase;
}
#about > h2 {
  color: black;
}
#about {
  background-color: white;
}

#education {
  background-color: var(--education);
}
#Skills {
  background-color: var(--Skills);
}
#Projects {
  background-color: var(--Projects);
}
#Contactme {
  background-color: var(--Contactme);
}
p {
  background-color: white;
  margin-bottom: 10px;
  padding: 0.5em;
  width: 60%;
}

#footer {
  display: block;
  width: 100%;
  background-color: black;
  color: white;
  padding: 2em;
  text-align: center;
}
