@font-face { 
    font-family: "Fairfax Pona HD"; 
    src: url("../FairfaxPonaHD.ttf"); 

} 


html { 
    overflow-x: hidden; 
    overflow-y: scroll; 
    scrollbar-width: none; 

} 

html::-webkit-scrollbar { 
    display: none; 

} 


body { 
    margin: 0; 
    font-family: "Comic Sans MS", sans-serif; 
    background-color: black; 
    color: red; 
    text-align: center; 
    overflow-x: hidden; 
    overflow-y: visible; 
    min-width: 1000px; 
    width: 100%; 
    user-select: none; 

} 


h1 { 
    margin-top: 20px; 
    color: red; 

} 

.banner { 
    position: relative; 
    width: 100%; 
    height: 80px; 
    margin-top: -15px;  
    margin-bottom: 0; 
    overflow: hidden; 
    border: 2px solid #666; 
    border-bottom: none; 
    box-sizing: border-box; 
} 

.banner img { 
    position: absolute; 
    width: 1000px; 
    height: 200px; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    display: block; 
} 

.banner h1 { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 

    margin: 0; 
    width: 100%; 

    color: red; 
    font-size: 32px; 
    text-shadow: 2px 2px black; 
    z-index: 2; 
} 

.wrapper { 
    width: 1000px; 
    margin: 20px auto; 

} 


.navbar { 
    background: #333; 
    border: 2px solid #777; 
    padding: 10px; 
    color: white; 
    margin-bottom: 10px; 

} 


.navbar a { 
    color: white; 
    text-decoration: none; 

} 


.navbar a:hover { 
    color: red; 

} 


.box { 
    background: #111; 
    border: 2px solid #666; 
    padding: 10px; 
    margin-bottom: 15px; 
    color: red; 

} 


.box h3 { 
    margin-top: 0; 
    color: white; 

} 


.extras-container { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 30px; 

} 


.extra-button { 
    width: 220px; 
    height: 120px; 
    background: #222; 
    border: 2px solid #777; 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: 0.2s; 
    font-size: 20px; 

} 


.extra-button:hover { 
    background: #444; 
    border-color: red; 
    transform: scale(1.05); 

} 


.hidden { 
    display: none; 

} 


.media-area { 
    background: #111; 
    border: 2px solid #666; 
    padding: 20px; 
    color: white; 

} 


.upload-container { 
    display: flex; 
    justify-content: center; 
    margin: 20px; 

} 


#mediaDisplay img { 
    max-width: 700px; 
    max-height: 500px; 
    margin-top: 15px; 

} 


#mediaDisplay pre { 
    background: #222; 
    border: 2px solid #666; 
    padding: 15px; 
    text-align: left; 
    white-space: pre-wrap; 
    color: white; 

} 


#progressBar { 
    width: 300px; 
    height: 25px; 

} 


#downloadButton { 
    display: inline-block; 
    margin-top: 15px; 
    padding: 10px 20px; 
    background: #333; 
    color: white; 
    border: 2px solid #777; 
    text-decoration: none; 

} 


#downloadButton:hover { 
    color: red; 

} 


video { 
    max-width: 700px; 
    margin-top: 15px; 

} 


audio { 
    margin-top: 15px; 

} 


.back-button { 
    margin-top: 20px; 
    padding: 10px 30px; 
    background: #333; 
    color: white; 
    border: 2px solid #777; 
    cursor: pointer; 

} 


.back-button:hover { 
    color: red; 

}

#compressProgressBar {
    width: 300px;
    height: 25px;
}

.compressor-mode {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.compressor-mode label {
    color: white;
    cursor: pointer;
}

#compressionSlider {
    width: 500px;
    accent-color: red;
}

#targetSizeInput {
    width: 180px;
    padding: 8px;
    background: #222;
    color: white;
    border: 2px solid #777;
    font-family: "Comic Sans MS", sans-serif;
    text-align: center;
}

#targetSizeInput:focus {
    outline: none;
    border-color: red;
}

#compressorOptions button {
    padding: 10px 25px;
    background: #333;
    color: white;
    border: 2px solid #777;
    cursor: pointer;
    font-family: "Comic Sans MS", sans-serif;
}

#compressorOptions button:hover {
    color: red;
    border-color: red;
}

.process-button {
    padding: 10px 25px;
    background: #333;
    color: white;
    border: 2px solid #777;
    cursor: pointer;
    font-family: "Comic Sans MS", sans-serif;
}

.process-button:hover {
    color: red;
    border-color: red;
}

#converterProgress,
#compressorProgress {
    margin-top: 10px;
}

#converterResult,
#compressActualSize {
    color: white;
}

#compressProgressBar,
#progressBar {
    width: 300px;
    height: 25px;
}