body{
    font-family: sans-serif;
    margin: 0;
}

a{
    text-decoration: none;
    color: white;
}

header{
    display: flex;
    min-height: 70px;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 50px;
    margin-right: 10px;
}

nav a{
    font-weight: 600;
    padding-right: 10px;
}

nav a:hover{
    color: black;
}

@media(max-width:700px){
    header{
        flex-direction: column;
    }
    nav{
        padding: 10px 0px;
    }
    .box{
        flex-direction: column;
        padding: 10px 0px;
    }
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  body{
    background: rgb(64,63,80);
    background: linear-gradient(90deg, rgba(64,63,80,1) 0%, rgba(62,66,89,1) 35%, rgba(77,85,87,1) 100%);
    background-size: cover;
  }

  
  .box {
    width: 80%;
    height: 30%;
    background: rgba(0, 0, 0, .4);
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    margin-top: 4%;
    color: white;
    font-family: 'Century Gothic', sans-serif;
    
  }
  
  .box-img {
    border-radius: 50%;
  }
  
  .box h1 {
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: 100;
    margin: 30px 0 20px;
  }
  
  .box h2 {
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 100;
    margin-bottom: 30px
  }
  
  .box p {
    text-align: center;
  }
  
  .box ul {
    margin-top: 20px;
    list-style: none;
  }
  
  .box ul li {
    display: inline-block;
  }

    footer{
      text-align:center;
      padding-top: 50px;
      color: white;
      
    }