Skip to content
Snippets Groups Projects
styles.css 36.8 KiB
Newer Older
WiljamiT's avatar
WiljamiT committed
body {
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
WiljamiT's avatar
WiljamiT committed
  font-family: "Roboto", sans-serif;
WiljamiT's avatar
WiljamiT committed
  background-color: rgba(0, 0, 0, 0.1);
  color: #ffffff;
WiljamiT's avatar
WiljamiT committed
  position: relative;
  z-index: 9;
WiljamiT's avatar
WiljamiT committed
  padding: 0 5px 0 5px;
}
WiljamiT's avatar
WiljamiT committed
nav a {
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  text-shadow: 1px 1px 1px #1c1e21;
WiljamiT's avatar
WiljamiT committed
}
nav a:hover {
  transform: scale(1.1);
}
WiljamiT's avatar
WiljamiT committed
nav img {
  height: 50px;
  width: auto;
}
WiljamiT's avatar
WiljamiT committed
nav button {
  border: 1px solid black;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: lightgreen;
  cursor: pointer;
}
nav button:hover {
  background: red;
WiljamiT's avatar
WiljamiT committed
}

WiljamiT's avatar
WiljamiT committed
.menu-btn-1 {
  display: none;
}

WiljamiT's avatar
WiljamiT committed
.dropdown-content {
WiljamiT's avatar
WiljamiT committed
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
WiljamiT's avatar
WiljamiT committed
  position: relative;
  top: -100px;
WiljamiT's avatar
WiljamiT committed
  background-color: rgba(0, 0, 0, 0.8);
WiljamiT's avatar
WiljamiT committed
  padding: 20px 0px 20px 0px;
WiljamiT's avatar
WiljamiT committed
  height: 0px;
WiljamiT's avatar
WiljamiT committed
}
.dropdown-content a {
WiljamiT's avatar
WiljamiT committed
  margin: 15px;
WiljamiT's avatar
WiljamiT committed
  position: relative;
  top: -200px;
WiljamiT's avatar
WiljamiT committed
  width: auto;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
WiljamiT's avatar
WiljamiT committed
}
.dropdown-content a:hover {
WiljamiT's avatar
WiljamiT committed
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  transition: 0s;
  cursor: pointer;
WiljamiT's avatar
WiljamiT committed
}
WiljamiT's avatar
WiljamiT committed
.dropdown-content.active {
WiljamiT's avatar
WiljamiT committed
  z-index: 0;
WiljamiT's avatar
WiljamiT committed
  position: relative;
WiljamiT's avatar
WiljamiT committed
  top: -50px;
WiljamiT's avatar
WiljamiT committed
  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;
}

.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);
}
WiljamiT's avatar
WiljamiT committed

unknown's avatar
unknown committed
@media only screen and (max-width: 450px) {
WiljamiT's avatar
WiljamiT committed
  nav {
    background-color: transparent;
  }
  nav a {
    font-weight: 700;
    font-size: 16px;
  }
  .menu-btn-1 {
    display: block;
    padding: 2px;
  }
  .nav-lg a {
    display: none;
  }
}
WiljamiT's avatar
WiljamiT committed
header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
WiljamiT's avatar
WiljamiT committed
  background-image: url("../img/ethereum-kikuhisa.jpeg");
  height: 40vh;
WiljamiT's avatar
WiljamiT committed
}

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

.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
  background: #ffffff;
WiljamiT's avatar
WiljamiT committed
  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);
WiljamiT's avatar
WiljamiT committed
}

p,
h1 {
  font-family: "Roboto", sans-serif;
  text-align: center;
}

p {
  text-align: left;
  font-size: 20px;
}

WiljamiT's avatar
WiljamiT committed
.firstArticle {
  height: auto;
  margin: 0 auto;
  max-width: 1000px;
  width: auto;
WiljamiT's avatar
WiljamiT committed
  display: flex;
  align-items: center;
  justify-content: center;
}
.firstArticle img {
  width: 600px;
  height: auto;
}
WiljamiT's avatar
WiljamiT committed

.secondArticle {
  height: auto;
  padding: 10px;
  margin: 10px;
  text-shadow: 1px 1px 1px #1c1e21;
  margin-bottom: 10vh;
WiljamiT's avatar
WiljamiT committed
}
.secondArticle h1 {
  font-size: 40px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-align: center;
WiljamiT's avatar
WiljamiT committed
}
.secondArticle figure {
  margin-top: 50px;
  padding-top: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.secondArticle figure .textContent {
  width: auto;
  margin: 5px;
  padding: 5px;
  color: #ffffff;
WiljamiT's avatar
WiljamiT committed
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
WiljamiT's avatar
WiljamiT committed
}
.secondArticle figure .textContent .containerBtc,
.secondArticle figure .textContent .containerEth,
.secondArticle figure .textContent .containerUsdc,
.secondArticle figure .textContent .containerUsdt,
.secondArticle figure .textContent .containerBnb {
WiljamiT's avatar
WiljamiT committed
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1500px;
  height: 400px;
}
.secondArticle figure .textContent .containerBtc h2,
.secondArticle figure .textContent .containerEth h2,
.secondArticle figure .textContent .containerUsdc h2,
.secondArticle figure .textContent .containerUsdt h2,
.secondArticle figure .textContent .containerBnb h2 {
WiljamiT's avatar
WiljamiT committed
  text-align: center;
}
.secondArticle figure .textContent .imgContainer a {
  color: lightblue;
  text-decoration: none;
}
.secondArticle figure .textContent .imgContainer a:hover {
  text-decoration: underline;
}
WiljamiT's avatar
WiljamiT committed
.secondArticle figure .textContent .text {
  height: 300px;
WiljamiT's avatar
WiljamiT committed
  position: relative;
  top: -45px;
WiljamiT's avatar
WiljamiT committed
}
.secondArticle figure .textContent h1 {
  text-align: center;
}
.secondArticle figure .textContent p {
  width: 600px;
}
.secondArticle figure .textContent img {
WiljamiT's avatar
WiljamiT committed
  width: 550px;
WiljamiT's avatar
WiljamiT committed
  height: auto;
WiljamiT's avatar
WiljamiT committed
}

.thirdArticle {
  height: auto;
  margin: 0 auto;
  max-width: 1000px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thirdArticle h1 {
  font-size: 40px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

WiljamiT's avatar
WiljamiT committed
.mid {
WiljamiT's avatar
WiljamiT committed
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
WiljamiT's avatar
WiljamiT committed
  font-family: "Roboto", sans-serif;
WiljamiT's avatar
WiljamiT committed
  width: auto;
  padding: 20px;
  text-shadow: 1px 1px 1px #1c1e21;
WiljamiT's avatar
WiljamiT committed
  border-radius: 5px;
}
.mid h1 {
  font-size: 40px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
WiljamiT's avatar
WiljamiT committed
}

figure img {
  width: auto;
  height: 160px;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
WiljamiT's avatar
WiljamiT committed
  margin-bottom: 30px;
@media only screen and (max-width: 1500px) {
WiljamiT's avatar
WiljamiT committed
  .firstArticle {
    height: auto;
    padding: 10px;
    margin: 10px 10px 40px 10px;
WiljamiT's avatar
WiljamiT committed
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
WiljamiT's avatar
WiljamiT committed
  }
  .firstArticle h1 {
    font-size: 50px;
  }
  .firstArticle img {
    width: 550px;
  }
  .firstArticle .mid {
    width: 500px;
WiljamiT's avatar
WiljamiT committed
  }
  .secondArticle h1 {
    font-size: 30px;
    text-align: center;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
  }
  .secondArticle p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
  }
  .secondArticle figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .secondArticle figure .textContent {
    width: auto;
    height: auto;
WiljamiT's avatar
WiljamiT committed
    margin: 0px;
    padding: 0px;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .secondArticle figure .textContent .containerBtc,
.secondArticle figure .textContent .containerEth,
.secondArticle figure .textContent .containerUsdc,
.secondArticle figure .textContent .containerUsdt,
.secondArticle figure .textContent .containerBnb {
    margin-top: 0px;
    margin-bottom: 50px;
WiljamiT's avatar
WiljamiT committed
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .secondArticle figure .textContent .containerBtc h2,
.secondArticle figure .textContent .containerEth h2,
.secondArticle figure .textContent .containerUsdc h2,
.secondArticle figure .textContent .containerUsdt h2,
.secondArticle figure .textContent .containerBnb h2 {
WiljamiT's avatar
WiljamiT committed
    text-align: center;
  }
  .secondArticle figure .textContent .containerBtc h3,
.secondArticle figure .textContent .containerEth h3,
.secondArticle figure .textContent .containerUsdc h3,
.secondArticle figure .textContent .containerUsdt h3,
.secondArticle figure .textContent .containerBnb h3 {
    text-align: center;
  }
  .secondArticle figure .textContent .text p {
WiljamiT's avatar
WiljamiT committed
    position: relative;
    top: 20px;
    text-align: left;
WiljamiT's avatar
WiljamiT committed
  }
  .secondArticle figure .textContent h1 {
    text-align: center;
  }
  .secondArticle figure .textContent p {
    text-align: center;
    width: 550px;
WiljamiT's avatar
WiljamiT committed
  }
  .secondArticle figure .textContent img {
    height: 400px;
    width: 550px;
    margin-bottom: 0px;
  }
  .secondArticle figure .imgContainer {
    position: relative;
    margin-top: 20px;
    margin-bottom: 100px;
  }
  .secondArticle figure .imgContainer p {
    text-align: center;
    width: auto;
WiljamiT's avatar
WiljamiT committed
  }
}
@media only screen and (max-width: 800px) {
  .firstArticle {
    height: auto;
    padding: 10px;
    margin: 10px 10px 40px 10px;
WiljamiT's avatar
WiljamiT committed
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .firstArticle h1 {
    font-size: 30px;
  }
  .firstArticle img {
    width: 350px;
  }
  .firstArticle .mid {
    width: 300px;
  }
WiljamiT's avatar
WiljamiT committed
  .secondArticle h1 {
    font-size: 30px;
    text-align: center;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
  }
  .secondArticle p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
  }
  .secondArticle figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .secondArticle figure .textContent {
    width: auto;
    height: auto;
WiljamiT's avatar
WiljamiT committed
    margin: 0px;
    padding: 0px;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .secondArticle figure .textContent .containerBtc,
.secondArticle figure .textContent .containerEth,
.secondArticle figure .textContent .containerUsdc,
.secondArticle figure .textContent .containerUsdt,
.secondArticle figure .textContent .containerBnb {
    margin-top: 0px;
    margin-bottom: 30px;
WiljamiT's avatar
WiljamiT committed
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .secondArticle figure .textContent .containerBtc h2,
.secondArticle figure .textContent .containerEth h2,
.secondArticle figure .textContent .containerUsdc h2,
.secondArticle figure .textContent .containerUsdt h2,
.secondArticle figure .textContent .containerBnb h2 {
    text-align: center;
  }
  .secondArticle figure .textContent .containerBtc h3,
.secondArticle figure .textContent .containerEth h3,
.secondArticle figure .textContent .containerUsdc h3,
.secondArticle figure .textContent .containerUsdt h3,
.secondArticle figure .textContent .containerBnb h3 {
WiljamiT's avatar
WiljamiT committed
    text-align: center;
  }
  .secondArticle figure .textContent .text p {
WiljamiT's avatar
WiljamiT committed
    position: relative;
    top: 20px;
    text-align: left;
WiljamiT's avatar
WiljamiT committed
  }
  .secondArticle figure .textContent h1 {
    text-align: center;
  }
  .secondArticle figure .textContent p {
    text-align: center;
    width: 300px;
  }
  .secondArticle figure .textContent img {
    height: 200px;
    width: 350px;
    margin-bottom: 0px;
  }
  .secondArticle figure .imgContainer {
    position: relative;
    margin-top: 80px;
  }
  .secondArticle figure .imgContainer p {
    text-align: center;
    width: auto;
WiljamiT's avatar
WiljamiT committed
  }
}
@media only screen and (max-width: 400px) {
  .firstArticle {
    height: auto;
    padding: 10px;
    margin: 10px 10px 40px 10px;
WiljamiT's avatar
WiljamiT committed
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .firstArticle h1 {
    font-size: 30px;
  }
  .firstArticle img {
    width: 350px;
  }
  .firstArticle .mid {
    width: 300px;
  }
WiljamiT's avatar
WiljamiT committed
  .secondArticle h1 {
    font-size: 30px;
    text-align: center;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
  }
  .secondArticle p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
  }
  .secondArticle figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .secondArticle figure .textContent {
    width: auto;
    height: auto;
WiljamiT's avatar
WiljamiT committed
    margin: 0px;
    padding: 0px;
    color: #ffffff;
WiljamiT's avatar
WiljamiT committed
    font-family: "Roboto", sans-serif;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .secondArticle figure .textContent .containerBtc,
.secondArticle figure .textContent .containerEth,
.secondArticle figure .textContent .containerUsdc,
.secondArticle figure .textContent .containerUsdt,
.secondArticle figure .textContent .containerBnb {
    margin-top: 0px;
    margin-bottom: 30px;
WiljamiT's avatar
WiljamiT committed
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .secondArticle figure .textContent .containerBtc h2,
.secondArticle figure .textContent .containerEth h2,
.secondArticle figure .textContent .containerUsdc h2,
.secondArticle figure .textContent .containerUsdt h2,
.secondArticle figure .textContent .containerBnb h2 {
    text-align: center;
  }
  .secondArticle figure .textContent .containerBtc h3,
.secondArticle figure .textContent .containerEth h3,
.secondArticle figure .textContent .containerUsdc h3,
.secondArticle figure .textContent .containerUsdt h3,
.secondArticle figure .textContent .containerBnb h3 {
WiljamiT's avatar
WiljamiT committed
    text-align: center;
  }
  .secondArticle figure .textContent .text p {
WiljamiT's avatar
WiljamiT committed
    position: relative;
    top: 20px;
    text-align: left;
WiljamiT's avatar
WiljamiT committed
  }
  .secondArticle figure .textContent h1 {
    text-align: center;
  }
  .secondArticle figure .textContent p {
    text-align: center;
    width: 300px;
  }
  .secondArticle figure .textContent img {
    height: 200px;
    width: 350px;
    margin-bottom: 0px;
  }
  .secondArticle figure .imgContainer {
    position: relative;
    margin-top: 80px;
  }
  .secondArticle figure .imgContainer p {
    text-align: center;
    width: auto;
WiljamiT's avatar
WiljamiT committed
  }
}
p,
li {
  font-size: 20px;
}

p,
h1,
h2 {
  color: #f0f2f5;
}

WiljamiT's avatar
WiljamiT committed
footer {
WiljamiT's avatar
WiljamiT committed
  display: grid;
  margin: 0 auto;
  justify-content: space-around;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(3, auto);
  background-image: url("../img/logos/endless-constellation.svg") !important;
WiljamiT's avatar
WiljamiT committed
  padding-bottom: 0px;
  height: auto;
WiljamiT's avatar
WiljamiT committed
}
footer h2 {
  letter-spacing: 1.2px;
}
footer hr {
  display: none;
}
footer .left {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logos {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: -111px;
}
footer .marketplace {
  width: 300px;
WiljamiT's avatar
WiljamiT committed
  display: flex;
  flex-direction: column;
  align-items: center;
}
WiljamiT's avatar
WiljamiT committed
footer .marketplace li {
  color: gray;
WiljamiT's avatar
WiljamiT committed
  font-weight: 700;
WiljamiT's avatar
WiljamiT committed
  list-style-type: none;
  margin: 15px;
  cursor: pointer;
}
WiljamiT's avatar
WiljamiT committed
footer .marketplace li:hover {
WiljamiT's avatar
WiljamiT committed
  transform: scale(1.1);
}
WiljamiT's avatar
WiljamiT committed
footer .information {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
WiljamiT's avatar
WiljamiT committed
footer .information li {
  color: gray;
WiljamiT's avatar
WiljamiT committed
  font-weight: 700;
  list-style-type: none;
  margin: 15px;
  cursor: pointer;
WiljamiT's avatar
WiljamiT committed
footer .information li:hover {
  transform: scale(1.1);
WiljamiT's avatar
WiljamiT committed
}
footer svg {
WiljamiT's avatar
WiljamiT committed
  margin-top: 17px;
WiljamiT's avatar
WiljamiT committed
  fill: white;
WiljamiT's avatar
WiljamiT committed
  width: 150px;
WiljamiT's avatar
WiljamiT committed
  height: auto;
}
WiljamiT's avatar
WiljamiT committed
footer p {
  font-weight: 700;
}
footer .cright {
  color: gray;
  position: relative;
  left: 46px;
}
@media only screen and (max-width: 1200px) {
  footer {
    display: grid;
    margin: 0 auto;
    justify-content: space-around;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    padding-bottom: 40px;
  }
  footer .cright {
    width: 300px;
    height: 20px;
    top: 300px;
    left: 39px;
    text-align: center;
  }
}
@media only screen and (max-width: 800px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 30vh;
    height: auto;
    text-align: center;
    background-image: url("../img/logos/endless-constellation.svg") !important;
  }
  footer li {
    list-style-type: none;
    margin: 15px;
    cursor: pointer;
  }
  footer li:hover {
    transform: scale(1.1);
  }
  footer hr {
    display: block;
    width: 95%;
  }
  footer .cright {
    padding-bottom: 7px;
    position: relative;
    left: 0px;
    top: 0px;
    text-align: center;
  }
  footer .information {
    margin-bottom: 10px;
  }
  footer svg {
    margin-top: 15px;
    width: 70px;
    height: auto;
  }
}
footer .logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
footer .logos a {
WiljamiT's avatar
WiljamiT committed
  cursor: pointer;
  margin: 0;
  padding: 0;
}
WiljamiT's avatar
WiljamiT committed
footer .logos a:hover {
  transform: translateY(-1.5px);
WiljamiT's avatar
WiljamiT committed
footer .logos img {
WiljamiT's avatar
WiljamiT committed
  margin-top: 15px;
  width: 30px;
  height: auto;
  box-shadow: none;
  margin: 0px 7px 0px 7px;
}
unknown's avatar
unknown committed
@media only screen and (max-width: 450px) {
WiljamiT's avatar
WiljamiT committed
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    min-height: 30vh;
    height: auto;
    text-align: center;
    background-image: url("../img/logos/endless-constellation.svg") !important;
WiljamiT's avatar
WiljamiT committed
    padding-bottom: 0px;
WiljamiT's avatar
WiljamiT committed
  }
  footer p,
footer li {
    font-size: 16px;
  }
WiljamiT's avatar
WiljamiT committed
  footer li {
    list-style-type: none;
    margin: 15px;
    cursor: pointer;
  }
  footer li:hover {
    transform: scale(1.1);
  }
  footer hr {
    width: 95%;
  }
  footer .cright {
    padding-bottom: 7px;
    position: relative;
    left: 0px;
  }
  footer .information {
    margin-bottom: 10px;
  }
  footer svg {
    margin-top: 15px;
    width: 70px;
    height: auto;
  }
}
footer .logos {
WiljamiT's avatar
WiljamiT committed
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
WiljamiT's avatar
WiljamiT committed
  position: relative;
  top: 0px;
}
footer .logos a {
  cursor: pointer;
  margin: 0;
  padding: 0;
}
footer .logos a:hover {
  transform: translateY(-1.5px);
}
footer .logos img {
  margin-top: 15px;
  width: 30px;
  height: auto;
  box-shadow: none;
  margin: 0px 7px 0px 7px;
p {
  font-size: 20px;
}

.firstArticle {
  padding-bottom: 120px;
}

.form {
  border: 1px solid black;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  margin: 0 auto;
  width: auto;
  padding: 10px;
  height: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form .signIn {
  background: rgba(0, 0, 0, 0.3);
  min-width: 300px;
  width: 50%;
  height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form .imgContainer {
  border-left: 0px;
  box-shadow: none;
  min-width: 300px;
  width: 50%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .imgContainer img {
  position: relative;
  top: 0px;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border-radius: 0px;
}
.form input {
  margin: 10px;
  border-bottom: 2px solid rgba(222, 40, 4, 0.5830532897);
  border-left: none;
  border-top: none;
  border-right: none;
  background: transparent;
  display: flex;
}
.form .uName::-moz-placeholder {
  color: white;
  opacity: 0.5;
}
.form .uName:-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}
.form .uName::placeholder {
  color: white;
  opacity: 0.5;
}
.form .pWord::-moz-placeholder {
  color: white;
  opacity: 0.5;
}
.form .pWord:-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}
.form .pWord::placeholder {
  color: white;
  opacity: 0.5;
}
.form button {
  margin-top: 6px;
  padding: 5px;
  border-radius: 25px;
  border: none;
  width: 175px;
  font-weight: 700;
  background: rgb(11, 10, 24);
  background: rgba(222, 40, 4, 0.5830532897);
  color: white;
  text-shadow: 1px 1px 1px black;
WiljamiT's avatar
WiljamiT committed
  font-size: 16px;
  cursor: pointer;
}
.form img {
  height: 30px;
  width: auto;
  margin: 5px;
}
.form .btn,
.form .btn1,
.form .btn2 {
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .btn:hover,
.form .btn1:hover,
.form .btn2:hover {
  transform: translateY(-1.5px);
}
.form .btn img,
.form .btn1 img,
.form .btn2 img {
  margin: 0px;
  padding: 3px;
  width: 40px;
  border-radius: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: none;
}
.form .btn button,