* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  background-color: lavender;
}

header {
    background-color: RebeccaPurple;
    color: Lavender;
    padding: 4rem 5rem;
}


h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;

}

hr {
    border: 0.15rem solid #E6E6FA;
    border-radius: 7px;
    width: 10%;
    margin: 2rem 0;
}

header p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

h3 {
    color: rebeccapurple;
    font-size: 2rem;
}

section {
    margin: 2rem 5rem;
}

footer {
    padding: 1rem 5rem;
    color: #1C1F23;
}


#version {
    margin-top: 1rem;
    }
    

/* Colors */
.gray {
    color: #6B737C;
    line-height: 2;
}

.green{
    color: #20762D;
}

.blue{
    color: #0845B8;
}

.purple {
    color: #6434b8;
}

/* Table */

table {
    margin: 1rem 0 2rem;
    width: 100%;
    background-color: white;
    padding: 2rem;
    color: #1C1F23;
    border-radius: 1rem;
}
th {
    padding: 1rem;
    border-bottom: 0.15rem solid lavender;
}

td {
    padding: 1rem;
    line-height: 1.2;
    vertical-align: top;
    border-bottom: 0.15rem solid lavender;
}

td:not(:last-child), th:not(:last-child) {
    border-right:0.15rem solid lavender;
}

thead th {
    text-align: left;
}

tr:last-of-type td {
    border-bottom: none;
}




