* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    padding: .75rem 2rem;
    font-weight: bold;
    background-color: #931e34;
    color: #FFF7E8;
    text-decoration: none;
    border-radius: 6px;
    margin: 10px;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #FFF7E8;
    color: #262421;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-top: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
}


img {
    margin: 20px auto;
    border: 2px solid #931e34;
    border-radius: 10px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.17);
}

th,
td {
    border: 1px solid #931e34;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #931e34;
    color: #f7f3e3;
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #FFF7E8;
}

tbody tr:nth-child(odd) {
    background-color: #e4ded1;
}


footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

hr {
    height: 1px;
    background-color: #931e34;
    margin: 20px;
}

a:hover,
a:focus {
    background-color: #9c515f;
    color: #FFF7E8;
}

::selection {
    background-color: #fe8282;
    color: #000;
}