:root {
  --white: hsl(0deg 0% 13%);
  --dark: hsl(0, 0%, 0%);
  --blue: hsl(0deg 0% 18%);
  --darker-blue: hsl(0deg 0% 68%);
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  background-color: black;
  color:white;
}

img {
  width: 100%;
  vertical-align: top;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

.headline-2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 33px;
  color: white;
  margin-bottom: 20px;
}

.paragraph {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: white;
  margin-bottom: 90px;
}

.small {
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  color: rgb(255, 255, 255);
}

.small-light {
  font-weight: lighter;
  font-size: 12px;
  line-height: 15px;
  color: white;
}

body {
  width: 100%;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.container {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1160px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 1110px;
  }
}

.content {
  /* padding: 100px 25px; */
  border-radius: 20px;
  text-align: center;
  background-color: black;
  color:white;
}

.header {
  max-width: 450px;
  margin: auto;
}

.accounts-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(auto, 200px));
  grid-auto-rows: 200px;
  justify-items: center;
  justify-content: center;
  align-items: center;
}

.account {
  background-color: var(--blue);
  padding: 15px;
  text-align: center;
  border-radius: 15px;
  width: 100%;
}
.account-wrapper {
  padding: 15px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0px 10px 20px -4px var(--shadow);
}
.account-img {
  max-width: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.account-name {
  margin-bottom: 15px;
}
.account-btn {
  display: inline-block;
  color: rgb(0, 0, 0);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
  line-height: 0;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}
.account-btn:hover, .account-btn:active {
  background-color: var(--blue);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 100px;
  border-radius: 5px;
  box-shadow: 0px 10px 20px -4px var(--shadow-dropdown);
  z-index: 1;
  left: -38px;
  padding: 10px;
  text-align: left;
}
.dropdown-content a {
  color: white;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
}
.dropdown-content a svg {
  vertical-align: middle;
  width: 20px;
  stroke-width: 1.5;
  margin-right: 5px;
}
.dropdown-content a:not(:last-child) {
  margin-bottom: 5px;
}
.dropdown-content a:hover, .dropdown-content a:focus, .dropdown-content a:active {
  background-color: var(--blue);
}

.show {
  display: block;
}

.active {
  background-color: var(--blue);
}

.add-account {
  border-radius: 50%;
  border: 4px solid var(--blue);
  padding: 5px;
  text-align: center;
  line-height: 0;
  display: inline-block;
  color: var(--darker-blue);
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  transition: all 0.15s ease-in-out;
}
.add-account .feather {
  width: 60px;
  height: 60px;
}