* {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  margin: 0;
}

body {
  background-image: url(fond.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-div {
  border: solid black;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5em;
  padding: 1em;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.social-links-div {
  border: solid black;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5em;
  padding: 1em;
}

.container a {
  text-decoration: none;
  color: black;
  padding: 2em;
}

.container a:hover {
  background-color: black;
  color: white;
  border-radius: 10px;
}

.icon {
  width: 2.5rem;
  fill: currentColor;
}

h2 {
  font-size: 1em;
  color: whitesmoke;
}

header {
  display: flex;
  justify-content: center;
  position: fixed;
  align-items: center;
  width: 100%;
  height: 3em;
  /* margin-top: -1em; */
  margin: 0;
  background-color: black;
}
header a {
  text-decoration: none;
  color: whitesmoke;
  margin: 0 2em;
}
header a:hover {
  text-decoration: none;
  color: lightcoral;
  margin: 0 2em;
}
