@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
   font-family: 'Nunito', sans-serif;
   font-size: 16px;
}

body {
   color: black;
   margin: 40px;
   width: 900px;
   min-width: 850px;
   max-width: 950px;
   justify-content: center;
}

p {
   text-align: justify;
   margin: 25px;
}

h1,
h2,
h3 {
   text-align: justify;
   color: blue;
}

.libutton {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 1px;
   text-align: center;
   outline: none;
   text-decoration: none !important;
   color: #ffffff !important;
   width: 150px;
   height: 25px;
   border-radius: 16px;
   background-color: #0A66C2;
   font-family: "SF Pro Text", Helvetica, sans-serif;
}

.my-header {
   display: grid;
   min-width: 650px;
   max-width: 900px;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 6;
   justify-content: center;
   align-content: center;
   background-color: #fff;
   gap: 2px 5px;
   padding: 20px;
}

.my-header-item1 {
   grid-row: 1/6;
   place-self: center;
}

.my-header-item2 {
   background-color: rgb(182, 182, 182);
   text-align: center;
   padding: 5px;
}

.my-header-item3 {
   background-color: rgb(222, 222, 222);
   text-align: left;
   padding: 15px;
}

.my-header-item4 {
   background-color: rgb(222, 222, 222);
   text-align: left;
   padding: 15px;
}

.my-header-item5 {
   background-color: rgb(222, 222, 222);
   text-align: left;
   padding: 15px;
}

.my-header-item6 {
   background-color: rgb(222, 222, 222);
   text-align: left;
   padding: 15px;
}

.box {
   background-color: rgb(255, 255, 255);
   color: rgb(0, 0, 0);
   border-radius: 5px;
   padding: 20px;
}

.myname {
   font-size: 2em;
}

#resp-table {
   width: auto;
   display: table;
   border: 1px solid;
   border-color: gray;
}

#resp-table-caption {
   display: table-caption;
   text-align: center;
   font-size: 30px;
   font-weight: bold;
}

#resp-table-header {
   display: table-header-group;
   background-color: rgb(212, 212, 212);
   font-weight: bold;
   font-size: 19px;
   border: 0px solid;
}

#resp-table-body {
   display: table-row-group;
   font-size: 16px;
   border: 0px solid;
}

.table-header-cell {
   display: table-cell;
   padding: 10px;
   text-align: center;
   border: 1px solid;
   border-color: rgb(31, 30, 30);
}

.resp-table-row {
   display: table-row;
   border: 0px solid;
}

.table-body-cell {
   display: table-cell;
   border: 1px solid;
   padding: 5px;
   border-color: rgb(31, 30, 30);
}