@import url('https://fonts.googleapis.com/css?family=Raleway:200,700');   
body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  background: #000; 
  margin: 0;
}
iframe { 
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 160%;
  min-height: 160%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}  
h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: .3rem;
  font-weight: 700;
}
p {
  text-align: justify;
  text-justify: inter-word;
  font-size: 1.1rem;
}
.card { 
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 2rem;
  width: 33%;
  margin:2rem;
  float: right;
  font-size: 1.2rem;
  border-radius: 12px;  
}
.footer {
  bottom: 0;
  width: 100%;
  background:rgba(0,0,0,0.7);
  position:fixed;
  text-align: left;
  display: flex;
  align-items:center;
  justify-content: center;
}
.socialLink {
  padding: 0;
  border-radius: 100px;
  margin: 10px;
  color: transparent;
}
.socailImg{
  width: 50px;
}
.copyRights{
  font-size: 0.7rem;
  color: white;
  align-self: flex-end;
  flex: 1;
}
.socialContainer{
  padding-top: 10px;
  margin-right: 2rem;
}
.nameImg{
    width:auto; 
    height:60px; 
    padding:10px
}
.nameContainer{
    flex:1; 
    margin-left: 2rem;
}
@media screen and (max-width: 640px) {
    iframe{
        display: none;
    }
    .card {
      width: 85%;
      padding: 0;
      margin: 10;
      margin-bottom: 100px;
    }
    .socialContainer{
        margin: 0;
    }
    .socailImg{
        width: 1.5rem;
    }
    .nameImg{
        height: 33px;
    }
    .copyRights{
        display: none;
    }
    .nameContainer{
        margin-left:0;
    }
    .footer{
        background:rgba(0,0,0,0.8);
    }
  }
