body{
    font-family: sans-serif;
    font-size: 0.8rem;
    background-color: white;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem;
    background-color: none;
}

.row{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.col{
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 8px grey;
    flex-basis: 20rem;
    text-align: center;
    background-color: rgb(15, 26, 68);
}

.card-title{
    padding: 0%;
    margin-top: 0%;
}

a{
    text-decoration: none;
    padding: 0.5rem;
    color: dimgrey;
    font-weight: bold;
}

a:hover{
    color: blue;
}

h1, h2{
    color: rgb(93, 93, 210);
    text-align: center;
}

form{
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 8px grey;
    border-collapse: collapse;
}

.table{
    border-spacing: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 8px grey;
    border-collapse: collapse;
}

th{
    padding-top: 2rem;
    text-align: left;
    padding-left: 2rem;
}

td{
    padding-left: 2rem;
    text-align: left;
}

button{
background-color: rgb(93, 93, 210);
border: none;
padding: 0.7rem;
color: white;
border-radius: 10px;
box-shadow: 0 0 8px grey;
margin: 1.5rem;
cursor: pointer;
}