@font-face {
  font-family: "Poppins";
  src: url(../../../asets/fonts/Poppins-Medium.ttf);
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}

body {
  background: #bb97c0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.dropdown {
  max-width: 300px;
  border-radius: 5px;
  margin: 100px auto;
  background: #974697;
  overflow: hidden;
}

.btn-top {
  padding: 20px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #974697;
  color: #303030;
  cursor: pointer;
  border-radius: 5px;
}
.btn-top img {
  width: 20px;
}

.bloc-links {
  padding: 0 20px;
  transition: height 0.2s ease-in-out;
  height: 0;
}
.bloc-links li {
  list-style-type: none;
  padding: 5px 0;
}
.bloc-links li a {
  font-size: 18px;
  color: #f1f1f1;
  margin-left: 5px;
}
.bloc-links li:last-child {
  padding-bottom: 25px;
}
