html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 2rem;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

*, *::after, *::before {
    box-sizing: border-box;
}

form {
    display: flex;
    margin-left: -78px;
}

.labels {
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
}

.inputs {
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
}

.text {
    margin-top: 1.5rem;
}

label[for="domain"] {
    margin-bottom: 1.5rem;
}

input[type="text"] {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

input[type="submit"] {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
}

textarea {
    font-size: 1.8rem;
    resize: none;
    margin-bottom: 1.5rem;
}

select[id="location_names"] {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.the-table {
    margin-top: 3rem;
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
}

table, td, th {
    border: 1px solid black;
}

td {
    padding: 0.5rem;
    text-align: center;
}