*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    min-height: 100vh;
    background-color: rgb(77, 77, 77);
}
.leftbar{
    width: 250px;
    background-color: rgb(0, 0, 0);
    color: whitesmoke;
    padding: 1rem;
}
.leftbar h2{
    margin-bottom: 2rem;
}
.leftbar a{
    display: block;
    color: darkgray;
    text-decoration: solid;
    margin-bottom: 1rem;
}
.leftbar a:hover{
    text-decoration: underline;
    color: darkmagenta;
}

.main {
    flex-grow: 1;
    padding: 2rem;
}
.main h1{
    color: aliceblue;
    text-shadow: 0 0 30px black;
    margin-bottom: 0.5rem;
}
.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap :1rem;
    margin-bottom: 0.85rem;
}
.card{
    background: rgb(148, 147, 145);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px aquamarine;
    transition: transform 0.6s ease;
}
.card:hover{
    transform: scale(1.2);
    background-color: white;
}

.card h3{
    margin-bottom: 0.3rem;
}

table{
    width: 80%;
    border-collapse: collapse;
    margin-top:2rem;
    
}
table th , table td {
    padding : 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgb(196, 193, 193);
    color: aliceblue;
    text-shadow: 0 0 10px black;
}

table th {
    background-color: rgb(141, 141, 141);
}

