body {
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  position: relative;
  z-index: 9;
  padding: 0 5px 0 5px;
}
nav img {
  height: 50px;
  width: auto;
}
nav button {
  border: 1px solid black;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: lightgreen;
  cursor: pointer;
}
nav button:hover {
  background: red;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -100px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 0px 20px 0px;
  height: 0px;
}
.dropdown-content a {
  margin: 10px;
  position: relative;
  top: -200px;
  width: auto;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.dropdown-content a:hover {
  color: red;
}
.dropdown-content.active {
  position: relative;
  top: 0px;
  transition: ease 1s;
  height: 200px;
}
.dropdown-content.active a:nth-child(1) {
  top: 0px;
  transition: 1.2s;
}
.dropdown-content.active a:nth-child(2) {
  top: 0px;
  transition: 1s;
}
.dropdown-content.active a:nth-child(3) {
  top: 0px;
  transition: 0.8s;
}
.dropdown-content.active a:nth-child(4) {
  top: 0px;
  transition: 0.6s;
}

.menu-btn-1 {
  height: 32px;
  width: 40px;
  cursor: pointer;
}

.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
  background: red;
  border-radius: 3px;
  content: "";
  position: absolute;
  width: 40px;
  height: 6px;
  margin-top: 13px;
  transition: 0.3s ease-in-out;
}

.menu-btn-1 span::before {
  margin-top: -12px;
}

.menu-btn-1 span::after {
  margin-top: 12px;
}

.menu-btn-1.active span {
  background: transparent;
}

.menu-btn-1.active span::before {
  margin-top: 0;
  transform: rotate(45deg);
}

.menu-btn-1.active span::after {
  margin-top: 0;
  transform: rotate(-45deg);
}

header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/bitcoin-crypto-investment.jpeg");
  height: 300px;
  width: 100%;
}

.menu-btn-1 {
  height: 32px;
  width: 40px;
  cursor: pointer;
}

.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
  background: white;
  border-radius: 3px;
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  margin-top: 16px;
  transition: 0.3s ease-in-out;
}

.menu-btn-1 span::before {
  margin-top: -12px;
}

.menu-btn-1 span::after {
  margin-top: 12px;
}

.menu-btn-1.active span {
  background: transparent;
}

.menu-btn-1.active span::before {
  margin-top: 0;
  transform: rotate(45deg);
}

.menu-btn-1.active span::after {
  margin-top: 0;
  transform: rotate(-45deg);
}

article {
  height: auto;
}

figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Roboto", sans-serif;
}

figure img {
  width: auto;
  height: 160px;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: white;
  min-height: 30vh;
  height: auto;
  text-align: center;
  background-image: url(img/logos/endless-constellation.svg) !important;
}
footer li {
  list-style-type: none;
  color: gray;
  margin: 15px;
  cursor: pointer;
}
footer li:hover {
  transform: scale(1.1);
}
footer hr {
  color: white;
  width: 95%;
}
footer .cright {
  color: gray;
  padding-bottom: 7px;
}
footer .information {
  margin-bottom: 10px;
}
footer svg {
  margin-top: 15px;
  fill: white;
  width: 70px;
  height: auto;
}

.logos a {
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.logos a:hover {
  transform: translateY(-1px);
}
.logos img {
  margin-top: 15px;
  fill: white;
  width: 30px;
  height: auto;
  box-shadow: none;
  margin: 0px 7px 0px 7px;
}

footer figure {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

body {
  background: rgb(11, 10, 24);
  background: linear-gradient(24deg, rgb(11, 10, 24) 0%, rgb(5, 16, 48) 58%, rgba(222, 40, 4, 0.5830532897) 100%);
  height: 100%;
}/*# sourceMappingURL=styles.css.map */