/*I've extensively used BootStrap for the website, and therefore most of the formatting has been done throught it.
CSS Seperately has been used whatever I didn't feel could be easily achieved by bootstrap.*/
.round-corners{
    border-radius: 25px;
}

a.footer{
    text-decoration: none;
}

table {
    width:100%;
    height:fit-content;
    border: 2px solid;
    border-collapse: collapse;
    text-align: center;
    padding: 5px;
    table-layout:fixed;
}

.table-heading{
    background-color:#b1bec95d;
    text-decoration-line:initial;
    text-size-adjust:3px;
    border-color:rgb(102, 29, 29);
}

th, td{
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    border: 2px solid;
}

.page-heading{
    color:black;
    text-decoration:underline;
    letter-spacing:5px;
    text-shadow: 2px 3px #b1bec95d;
    text-align:center;
    padding-top: 20px;

}

.hov:hover{
    background-color: rgba(162, 162, 162, 0.486);
}

.nice_links{
    color:black;
}
.nice_links:hover{
    color:blue;
}

img:hover{
    transition: 0.3s ease;
    opacity:0.3;
}

.fullwrap{
    position: relative;
}

.fullwrap img {
    width: 100%;
}

.fullcap{
    box-sizing: border-box;
    width: 100%;
    height: 100%;

    position: absolute;
    top:0; left:0;
    text-align:center;
    padding-top: 30%;

    background-color: rgba(250, 243, 243, 0.7);
    color:black;
}

.fullcap{
    visibility: none; opacity: 0;
    transition: opacity 0.3s;
}

.fullwrap:hover .fullcap{
    visibility: visible; opacity: 1;
}