SaveTube - Fast and Free YouTube Downloads 
    
        
            Why Choose SaveTube? 
            With our user-friendly platform, you can easily convert and download your favorite videos and music from YouTube in high quality. Enjoy seamless downloading with no limits, perfect for offline viewing and listening.
         
        
            Start Using SaveTube Today 
            
         
     
    
    
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
}
main {
    padding: 20px;
}
#features, #download {
    margin-bottom: 20px;
}
h2 {
    color: #4CAF50;
}
form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
label {
    margin-bottom: 5px;
}
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #45a049;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
document.getElementById('download-form').addEventListener('submit', function(event) {
    event.preventDefault();
    const url = document.getElementById('url').value;
    if (url) {
        alert('Downloading: ' + url);
        // You can add your backend API call here to handle the downloading process
    } else {
        alert('Please enter a valid YouTube URL.');
    }
});