/* Apply to everything*/
html, body {

    margin: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(33, 37, 49); 
    display: flex;
    flex-direction: column; 
    align-items: center;    
    
    
}
/*TITLE */
.title {
    color: rgb(75, 58, 112);
    font-size: 60px;
    margin: 25px 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  
}

/* LINK/FILEINPUT */ 
.enterlink {
    display: flex;
    align-items: center; 
}

.enterlink label {
    margin-right: 10px; 
}

.enterlink input[type="file"],
.enterlink select {
    margin-right: 20px;
}

input[type="file"] {
    display: none;
}
/*AUDIO PLYAER */
#audio-player {
    margin-top: 20px;
    margin-bottom: 10px;
}
/*VISUALIZER CANVAS */
#visualizer {
    position: absolute; 
    top: 0;            
    left: 0;          
    width: 100vw;      
    height: 100vh;     
    pointer-events: none;
}
/* MEDIA*/
@media (max-width:100% ) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .step {
      width: 90%; 
    }
}
  /* LABEL*/
label {
    padding: 10px 20px;
    background-color: rgb(75, 58, 112); 
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

/*WHAT TO DO... */
.instructions-title {
    color: rgb(33, 37, 49); 
    font-size: 38px;
    text-align: center;
    margin: 20px 0;
   
}
/* STEP-START*/
.snippet {
    color: rgb(75, 58, 112);
    font-size: 28px;
    text-align: center;
    margin: 5px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

  
.steps {
    display: flex;               
    flex-direction: column;
    justify-content: center; 
    align-items: center;      
    margin: 65px 0;              
    width: 80%;                   
    font-size: 20px;
}


.stepList {
    display: flex;                   
    justify-content: space-evenly;  
    align-items: center; 
    list-style-type: none;           
    padding: 0;                    
    margin: 0;                       
}

.steps {
    display: flex;                
    justify-content: space-evenly; 
    align-items: center;           
    margin: 65;               
    width: 100%;                  
    font-size: 20px;
    flex-direction: row;           
}

.step {
    background: rgba(183, 162, 201, 0.2); 
    color: rgb(33, 37, 49);           
    padding: 30px;                      
    margin: 40px;                       
    border-radius: 10px;               
    text-align: center;                 
    width: 30%;                         
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;             
    justify-content: space-between;     
}


.description {
    color: rgb(33, 37, 49);   
    font-size: 14px;            
    margin-top: 5px;     
}


.steps .step:last-child {
    margin-top: 0;              
}
/*STEP ENDS */

/* VISUZLIZER CLOSE*/
#close-visualizer {
    display: none;
    position: fixed; 
    top: 20px;
    right: 20px;
    background-color: rgb(197, 195, 196); 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100; 
}

#close-visualizer:hover {
    background-color: rgb(183, 162, 201); 
}

/*Template Start */
#templates {
    background-color: rgb(75, 58, 112);
    color: white;                      
    font-size: 18px;                   
    padding: 10px 15px;                 
    border: none;                      
    border-radius: 5px;                
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    cursor: pointer;                    
    transition: background-color 0.3s ease;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


#templates:hover {
    background-color: rgb(60, 45, 100); 
}


#templates {
    appearance: none; 
    background-image: url('custom-arrow-icon.svg'); 
    background-repeat: no-repeat;
    background-position: right 10px center;
}


#templates:focus {
    outline: none;                     
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}

/*Template Ends*/    
