*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Merriweather Sans', sans-serif;
  display: grid;
  grid-template-rows: 1fr 0.1fr 0.9fr 0.4fr;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

.navigation a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  margin-left: 40px;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.5s;
}

.navigation a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.vid{
  display: flex;
  justify-content: center;
  align-items: center;
}

.vid #myVideo{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -2;
}

.vid h1{
  position: absolute;
  text-align: center;
  padding-top: 50px;
  color: #f0caa3;
  font-size: 80px;
  z-index: -1;
}

.coin-list{
  text-align: center;
  background:#0e0216;
  border-top:5px solid #39005a;
}

.coin-list img{
  width:50%;
  height: auto;
}
.coin-list h1{
  margin-top: 40px;
  font-weight: 300;
  color: #f0caa3;
}
.coins-graph{
  background:linear-gradient(#0e0216,#00005c, #c060a1, #f0caa3);
  width:100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}

.btc{
  display: flex;
  justify-content: center;
  align-items: center;
}
.eth{
  display: flex;
  justify-content: center;
  align-items: center;
}
.doge{
  display: flex;
  justify-content: center;
  align-items: center;
}
.bin{
  display: flex;
  justify-content: center;
  align-items: center;
}
.float img{
  position: relative;
  max-width: 500px;
  height: auto;
  border: 2px solid rgba(253, 253, 253, 0.3);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(253, 253, 253, 0.2);
}


/* footer */

.footer{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
background: #f0caa3;
border-top: 2px solid rgba(116, 116, 116, 0.4);
}

.copy h2{
  font-size: 40px;
  margin: 40px 40px;
  color: #0e0216;
  opacity: 0.8;
}
.copy p{
  margin: 30px 40px;
  color: #0e0216;
  opacity: 0.6;
}
.account h3{
  margin: 40px 40px;
  color: #0e0216;
  opacity: 0.7;
}

.account ul{
  list-style: none;
  line-height: 35px;
  margin: -30px 40px;
  color: #0e0216;
  opacity: 0.6;
}

.company h3{
  margin: 40px 40px;
  color: #0e0216;
  opacity: 0.7;
}
.company ul{
  list-style: none;
  line-height: 35px;
  margin: -30px 40px;
  color: #0e0216;
  opacity: 0.6;
}
.resources h3{
  margin: 40px 40px;
  color: #0e0216;
  opacity: 0.7;
}
.resources ul{
  list-style: none;
  line-height: 35px;
  margin: -30px 40px;
  color: #0e0216;
  opacity: 0.6;
}