body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}
.slider-container {
    margin: 10px 20px;
}
.slider-label {
    font-size: 18px;
    margin-right: 10px;
    display: block;
    margin-bottom: 5px;
}
#output {
    margin-top: 20px;
    font-size: 20px;
}
#planet1, #planet2 {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    position: absolute;
    top: 150px;
}
#planet2 {
    background-color: #e74c3c;
}
table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 90%;
    max-width: 600px;
    font-size: 16px;
}
table, th, td {
    border: 1px solid #000;
}
th, td {
    padding: 10px;
    text-align: center;
}
th {
    background-color: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .slider-container {
        margin: 15px 10px;
    }
    .slider-label {
        font-size: 16px;
    }
    table {
        width: 95%;
        font-size: 14px;
    }
    #planet1, #planet2 {
        top: 120px;
        width: 30px;
        height: 30px;
    }
    #output {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        margin: 10px 5px;
    }
    .slider-label {
        font-size: 14px;
    }
    table {
        width: 100%;
        font-size: 12px;
    }
    #planet1, #planet2 {
        top: 100px;
        width: 25px;
        height: 25px;
    }
    #output {
        font-size: 16px;
    }
}
