* {
  margin: 0;
  padding: 0;
}

h1 {
  justify-content: center;
}
img {
  border-radius: 50%;
}
body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: white;
}
.main {
  display: flex;
  flex-direction: column;
}

nav {
  height: 17vh;
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0, 1);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav li {
  height: 50px;
  font-size: 1.5rem;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}

nav a:hover {
  background-color: #f0f0f0;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: vh;
  width: 250px;
  z-index: 999;
  background-color: white;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}

@media (max-width: 720px) {
  .listitem {
    display: none;
  }
  .sidebar{
    display: none;
  }
}
@media (min-width: 720px) {
  .sidebar {
    display: none;
  }
  .menu_icon{
    display: none;
  }
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: white;
  width: 700px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: flex;
}

.content {
  height: 200px;
  background-color: white;
  margin-top: 190px;
  margin-left: 30px;
  transform: translate(0, -50%);
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.content h2 {
  font-family: sans-serif;
  font-size: larger;
  color: #555555;
  margin: 0px 0px 16px;
}
.content h5 {
  font-family: sans-serif;
  font-size: large;
  color: #555555;
}
.content h1 {
  font-family: sans-serif;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 5px;
}

button {
  border: 2px solid black;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 15px;
}
.contact {
  background-color: rgb(33, 23, 33);
  color: white;
  margin-left: 5px;
}
.cv {
  background-color: white;
  padding: 15px;
}
.cv:hover {
  background-color: rgb(33, 23, 33);
  color: white;
}
.buttons {
  margin-top: 10px;
}
.image {
  padding-top: 10px;
}
