* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cabin Sketch", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin-top: 200px;
    text-align: center;
    background-color: black;
    color: #fff;
}

header h1 {
    margin-bottom: 25px;
    font-weight: 700;
}

form {
    justify-content: space-between;
}

form input {
    margin-bottom: 25px;
    padding: 7px;
    height: 35px;
    border-radius: 7px;
    border-style: none;
    font-size: large;
}

form button {
    padding: 0 7px;
    height: 35px;
    cursor: pointer;
    font-size: large;
    background-color: lightblue;
    border-radius: 7px;
    border-style: none;
}

.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    align-content: center;
    border-radius: 9px;
    border-width: 3px;
    border-style:dotted;
    padding: 20px 0;
}

table {
    margin: 0 auto;
    justify-content: space-between;
    align-content: center;
}

table th {
    border-bottom: 2px solid white;
    padding: 13px;
    font-size: 24px;
    font-weight: bold;
}

table td {
    padding: 16px 8px;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
