*{
    overflow-x: hidden;
}

:root {
    --main-gold: rgb(193, 157, 38);
  }


body{
    background-color: black;
    overflow-x: hidden;
}

.nav{

    background-color: black;
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
    -webkit-box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
    -moz-box-shadow: 0px 6px 50px 3px rgba(216,151,17,0.58);
}

.nav-content{
    display: flex;
    flex-direction:row ;
    justify-content: space-between;
     gap: 2rem;
     width: 95%;
     max-width: 1150px;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-skill,.nav-upper,.home{
    font-size: 1.5rem;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
}

.nav-skill *,.nav-upper *,.home *{
    color: white;
    text-decoration: none;
}

.nav-skill a:hover span,.nav-upper a:hover span,.home a:hover span{
    color: var(--main-gold);
    text-decoration: none;
}

.nav-skill a:hover,.nav-upper a:hover,.home a:hover{
  color: var(--main-gold);
  text-decoration: none;
}

.title{
    text-align: center;
    color: var(--main-gold);
    background-color: black;
    padding: 1rem;
    margin-top: -1.5rem;
    font-size: 2rem;
}




.program-around{
    position: relative;
    max-width: 100vw;

    padding: 5rem 0;
    margin: 5rem 10vw;
    background: var(--main-gold);
    border-radius: 1rem;
    

}
.program{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;

}

.program *{
    font-family: sans-serif;
}

.program__save{
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    background-color: black;
    padding: .5rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

.program__clear{
position: absolute;
top: 10px;
left: 20px;
    color: white;
    background-color: black;
    padding: .5rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

.program__add-item{
    background-color: white;
    padding: .2rem 1rem;
    border-radius: 1rem;
    position: absolute;
    right: .5rem;
    bottom: 5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.program__add-box{
    background-color: black;
    color: white;
    font-size: 1.2rem;
    padding: .5rem 1rem;
    border-radius: 1rem;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.program__column{
    background-color: rgb(50, 50, 50);
    padding: 1rem 1rem 2rem 1rem;
    border-radius: 1rem;
    margin-top: 1rem;
    position: relative;
    min-width: 10rem;
    max-width: 80%;
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    opacity: 1;

}

.column-delete{
    color: black;
    background-color: white;
    position: absolute;
    left:0rem;
    padding: .5rem;
    border-radius: 1rem 0 1rem 0;
    top: 0rem;
}


.column-delete:hover{
    cursor: pointer;
}

.program__column.dragged {
    opacity: 0.5;
    cursor: move;
  }
  

.column-drag{
    color: black;
    background-color: white;
    position: absolute;
    right:0rem;
    padding: .5rem;
    border-radius: 0rem 0rem 0rem 0rem;
    background: url('all-directions.png');
    background-size: cover;
    width: 1rem;
    height: 1rem;
    background-color: white;
    padding: .5rem;
    bottom: 0rem;
}

.column-drag{
    cursor:grab;
}

.input-block{
    display: flex;
    width: 100%;
    box-sizing: border-box;
    background: white;
    border-radius: 1rem;
    cursor: pointer;
    margin-bottom: 2rem;
    height: 100%;
    justify-content: stretch;
    align-items: center;
    padding: 0rem!important;
    
}

.program__item-input{
    width: 75%;
    height: 100%;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin: 0rem!important;
    text-align: center;
    outline: none;
    border: none;
    white-space: nowrap;
    display: inline-block;

}

.delete-input{
    outline: none;
    border-left: solid black 1px;
    height: 100%;
    font-size: 3rem;
    display: block;
    width: 25%;
    text-align: center;
   font-weight: lighter;
}



.program__dropzone--active{
    height: 1rem;
    background: rgba(0, 0, 0, 0.25);
}


.minus,.plus
 {cursor:pointer; 
}

.program__count{

    margin-top: 50px;
    margin-bottom: 0px;
		}
		.minus, .plus{
			width:30px;
			height:20px;
			background:#f2f2f2;
			border-radius:4px;
			padding:8px 5px 8px 5px;
			border:1px solid #ddd;
      display: inline-block;
      vertical-align: middle;
      text-align: center;
		}
		.counter{
			height:36px;
      width: 40px;
      margin:0 .1rem;
      text-align: center;
      font-size: 26px;
			border:1px solid #ddd;
            background-color: white;
			border-radius:4px;
      display: inline-block;
      vertical-align: middle;
        }





  @media (max-width:560px){
    
    .hero-content{
      grid-template-columns: 1fr;
      justify-content: center;
      padding-left: 2rem;
    }

    .remove{
      display: none;
    }
    .nav-content{
      gap: .5rem;
      margin-right: .5rem;
  }
  }