* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
a {
  color: unset;
  text-decoration: none;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(assets/bg-gif.gif);
}
.top-nav {
  position: absolute;
  top: 5%;
  left: 5%;

  display: flex;
  gap: 20px;
  align-items: center;
}
.top-nav a {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}
a:first-child {
  border-radius: 50%;
}
.contact-div {
  width: 80%;
  padding: 20px;

  color: black;
  border-radius: 20px;
  -webkit-box-shadow: -4px -2px 30px 0px rgba(223, 223, 223, 0.75);
  -moz-box-shadow: -4px -2px 30px 0px rgba(223, 223, 223, 0.75);
  box-shadow: -4px -2px 30px 0px rgba(223, 223, 223, 0.75);
  background-color: white;
  text-align: center;
}

.download-cv {
  background-color: rgb(0, 56, 108);
  border-radius: 20px;
  padding: 10px;
  color: white;
  margin-top: 20px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}
.download-cv:hover {
  background-color: rgb(0, 93, 179);
}
