main {
    padding: 0 25px;
    line-height: 1.5;
    color: antiquewhite;
}

main button {
    background-color: blueviolet;
    height: 40px;
    padding: 0 24px;
    border-radius: 20px;
    color: yellow;
    border: none;
}

main a {
    text-decoration: none;
    color: yellow;
}

.sec-head {
    padding-top: 15px;
}

table, th, td {
    border: solid 2px lightskyblue;
}

table {
    width: 100%;
    border-radius: 10px;
    padding: 2px;
}

th {
    font-weight: bold;
    padding: 4px 8px;
}

td {
    padding: 4px 8px;
}

ol {
    padding-left: 40px;
}

ul {
    padding-left: 60px;
}

@media screen and (max-width:1024px) {
    main {
        padding: 0 15px;
        line-height: 1.25;
        color: antiquewhite;
        font-size: x-small;
    }
    
    main button {
        background-color: blueviolet;
        height: 36px;
        padding: 0 20px;
        border-radius: 16px;
        color: yellow;
        border: none;
        font-size: x-small;
    }
    
    main a {
        text-decoration: none;
        color: yellow;
    }
    
    .sec-head {
        padding-top: 10px;
    }
    
    table, th, td {
        border: solid 2px black;
    }
    
    table {
        width: 100%;
        border-radius: 10px;
        padding: 1px;
    }
    
    th {
        font-weight: bold;
        width: 5%;
        padding: 2px 4px;
    }
    
    td {
        padding: 2px 4px;
    }
    
    ol {
        padding-left: 20px;
    }
    
    ul {
        padding-left: 30px;
    }
}