

.grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
}


.btn-inside {
    background-color: #A1FDD6;
    color: #2b003e;
    border: none;
    padding: 10px 20px 10px 20px;
    font-size: 1.2rem;
    font-weight: normal;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
    margin-top: 10px;
    
}

.btn-inside:hover {
  background-color: #FED3E5;
  display: block;
}


table, th, td {
    border: 1px solid;
}

table {
    border-collapse: collapse;
}

th, td {
    padding: 10px;
}

td {
    text-align: right;
}

form {
    margin-top: 20px;
    margin-bottom: 10px;
}


@media only screen and (max-width: 600px) {
    .grid-container {
        display: grid;
        grid-template-rows: 50% 50%;
    }
}