@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

*{
    padding: 0px;
    margin: 0px;
  }

  body{
    width: 100%;
    height: 100%;
  }

  .nav-bar{
    height: 551px;
    background-image: linear-gradient(rgba(0,12,12,0.6),rgba(12,13,12,0.6)), url(../../resources/images/forArtistBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    
  }

  .nav-bar ul{
    display: flex;
    list-style: none;
    text-align: center;
    justify-content:center;
    padding-top: 20px;
    position: relative;
  }

  .nav-bar h1{
    color: #dfdfdf;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 38px;
  }

  .nav-bar h1 span{
    color: green;
    transition: 1s;
  }

  .nav-bar h1 span:hover{
    font-size: 42px;
    transition: 1s;
  }

  .nav-bar h4{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfdfdf;
    font-size: 13px;
    text-align: center;
    font-family: 'Poppins';
  }

  .nav-bar-items{
    font-size: 20px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    padding-right: 100px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
  }

  .logo{
    font-size: 20px;
    font-weight: bold;
    padding-right: 100px;
    text-align: center;
    list-style: none;
    text-decoration: none;
    color: #333;
  }

  .logo:hover{
    cursor: pointer;
  }

  .nav-bar-items:hover{
    color: green;
    font-size: 30px;
    transition: all 0.5s ease-in-out;
  }

  .sign-in, .sign-up, .learn-more{
    position: relative;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
    background-color: green;
    cursor: pointer;
    font-weight: bold;
    
  }

  .sign-in, .learn-more{
    margin-right: 10px;
    text-align: center;

  }

  .sign-in:hover, .sign-up:hover{
    color: green;
    background-color: white;
    transition: 0.5s;
  }
  .learn-more:hover{
    color: green;
    background-color: white;
    transition: 0.5s;
    border: 1px solid green;
  }

  #pp{
    padding-left: 20px;
  }

  .profile-pic {
    max-width: 30px;
    max-height:30px;
    border-radius: 50%;
    object-fit: cover;
  }

  .cont {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    height: 70vh;
  }  

  .cont h1 {
    color: #fff;
    background-color: #333;
    font-size: 32px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 40px;
    padding: 10px;
    text-align: center;
    margin-top: 90px;
  }
  
  .cont h1:hover{
    background-color: #333;
    color: #fff;
    transition: 0.5s;
    border-radius: 5px;
  }
  
  .cont p {
    color: #070000;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Poppins';
  }

  .uploadSect{
    min-height: 70vh;
    background-color: #fff3f3;
  }

  #labForTB{
    margin-left: 20px;
    font-family: 'Poppins';
  }

  #textBox{
    background-color: rgba(95, 53, 53, 0.399);
    height: 25px;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .container {
    background: #222;
    background-size: cover;
    background-position: center;
    max-width: 300px;
    height:55vh;
    margin: auto;
    margin-top: 40px;
    position: relative;
  }

  .upload_icon{
    position: relative;
    width: 60px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    border-radius: 50%;
    margin-bottom: 20px;
  }

  .container2{
    min-height: 90vh;
    background-color: #fff3f3;
  }

  .container2 form{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins';
  }

  .textBox{
    background-color: rgba(95, 53, 53, 0.399);
    height: 25px;
    width: 150px;
    margin-bottom: 20px;
  }

  #btn{
    transform: scale(1.3);
    color: #fff3f3;
    background-color: green;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 50px;
    transition: 0.5s;
}
#btn2{
    transform: scale(1.3);
    color: #fff3f3;
    background-color: red;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 50px;
    transition: 0.5s;
}

#btn:hover{
    transform: scale(1.4);
    border: 1px solid green;
    background-color: #fff;
    color: green;
    transition: 0.5s;
}

#btn2:hover{
    transform: scale(1.4);
    border: 1px solid red;
    background-color: #fff;
    color: red;
    transition: 0.5s;
}

.foot{
  height: 90vh;
  background-color: rgb(209, 207, 207);
  text-align: center;
  justify-content:center;
  padding-top: 5px;
  padding-left: 90px;
  padding-right: 80px;
  text-decoration: none;
  color: #070000;
  display: flex;
}

#contact{
  padding-top: 80px;
}

.foot h2{
  color: #070000;
  font-family: 'Open Sans', sans-serif;
}

.foot p{
  color: #070000;
  font-weight: bold;
  font-family: 'Poppins';
}

.foot-bar-lists{
  color: #070000;
  font-weight: bold;
  text-align: center;
  justify-content:center;
  align-items: center;
  font-size: 20px;
  font-family: 'Poppins';
  padding-top: 5px;
  padding-left: 60px;
  padding-right: 80px;
  text-decoration: none;
  display: flex;
}

.foot-bar-lists:hover{
  color: green;
  cursor: pointer;
  transition: 2s;

}

.fa-facebook {
  font-size: 20px;
  color: #335ff0;
}

.fa-twitter {
  font-size: 20px;
  color: aqua;
}

.fa-instagram {
  font-size: 20px;
  color:orangered;
}

.fa-youtube {
  font-size: 20px;
  color: red;
}

.fa-telegram {
  font-size: 20px;
  color: #3dafa5;
}

  @media (max-width: 768px) {
    
    .nav-bar-items{
      padding-right: 20px;
    }
  
    .logo{
      padding-right: 0px;
      padding-left: 100px;
      padding-top: 80px;
    }
  
    .sign-in, .sign-up, .profile-pic{
      position: relative;
      top: 40px;
      right: 213px;
    }
    .foot{
      display: block;
      height: 110vh;
    }

    #contact{
      padding-top: 0px;
      padding-bottom: 100px;
    }
    .foot-bar-lists{
      padding-bottom: 10px;
    }
  
  }