.options{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media(max-width:765px) {
    .options{
        flex-direction: column;
    }
    
    .options p::after {
        content: 'to-';
        margin: 0px;
        padding: 0px;
    }

    .options select{
        margin: 0;
    }
}

.second .table{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    border: 2px solid black;
    margin-top: 50px;
}

.second .table th{
    /* border: 4px solid black; */
    background-color:red;
    font-weight: 900;
    color: white;
}

.second .table td{
    border: 2px solid black;
    font-weight: 600;
}