.result_table{
    margin-top: 30px;
}

.result{
    width: 80%;
    max-width: 100%;
    height: 100%;
    font-size: 20px;
    align-self: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    padding: 40px;
    margin: 10px auto auto;
    overflow: auto;
}

#print{
    margin: 50px auto auto;
    display: block;
    width: 200px;
    border-radius: 5px;
    background: #2c598e;
    transition: all 0.3s;
    color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#print:hover{
    background: #000;
    transition: all 0.3s;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    h2{
        font-size: 20px;
    }
    table th{
        font-size: 14px;
    }
    table td{
        font-size: 14px;
    }
    #print{
        font-size: 14px;
        width: 150px;
    }
}