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

body {
    background: #7abaff;
    color: #223366;
}

main {
    padding: 50px;
}

section {
    padding: 30px;
    margin-bottom: 50px;
    background: #9fcdff;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin: 50px;
    padding: 0;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    text-align: center;
    margin: 30px;
    padding: 0;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    text-align: left;
    margin: 15px 0;
    padding: 0;
    text-transform: uppercase;
}

input[type=submit] {
    border: 0;
    background: #2277CC;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 7px;
    box-shadow: 1px 2px 0 #115299;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

input[type=submit]:hover {
    background: #115299;
    box-shadow: 1px 2px 0 #113D73;
    transform: translateY(-2px);
}

table {
    margin: 0 auto;
    border: 1px solid #115299;
}

th {
    background: #2277CC;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    margin: 0;
}

td {
    font-size: 17px;
    padding: 10px;
    margin: 0;
    text-align: center;
}

tr:nth-of-type(2n+1) td {
    background: #7abaff;
}

.profiles form {
    text-align: center;
}

.profiles input {
    margin: 10px;
}

.customization form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    text-align: center;
}

.customization form label {
    display: block;
    margin: 0 0 10px 0;
    text-align: left;
}

.customization form textarea {
    width: 100%;
    min-height: 150px;
    padding: 10px;
    font-size: 15px;
}

.customization form input[type=file] {
    display: block;
    border: 0;
    width: 100%;
    margin: 10px 0 30px 0;
    background: #115299;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 7px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.reports {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: auto auto;
}

.cards-report tr td:nth-of-type(1) {
    text-align: left;
}

