.App {
  background-image:url("background.png");
  width:100%;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


.card{
  width:25vw;
  background-color:rgba(0, 0, 0, 0.4);
  border-radius:15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding:30px;
}

.name{
  font-size:3rem;
  font-weight:700;
  color:white;
}

.explainer{
  color:white;
  font-size:1rem;
}

.socialimg:hover{
  cursor:pointer;
}

.highlight{
  color:rgb(224, 129, 255);
  font-weight:500;
}

.list{
  margin-top:30px;
}

.listitem{
  display:flex;
  flex-direction:row;
  gap:15px;
  margin-bottom:20px;
}

.listtext{
  color:white;
  font-size:0.9rem;
}

.socials{
  display:flex;
  gap:5px;
  margin-top:20px;
}

.socialimg{
  opacity:0.7;
}

.socialimg:hover{
  opacity:1;
}

a{
  color:#0CF;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .card{
    width:80%;
    bottom:10px;
    position:absolute;
  }
  .card{
    background-color:rgba(0, 0, 0, 0.5);
  }
  .listitem{
    margin-bottom:10px;
    display:flex;
    align-items: center;
  }
  .socials{
    display:flex;
    gap:5px;
    margin-top:10px;
  }
  .name{
    font-size:2.5rem;
  }
}