@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient( rgb(58, 0, 27), rgb(85, 16, 50) );
    font-family: "Cabin", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #222;
}
#app-header {
    background: linear-gradient(#fdfdfddd, #fdfdfddd);
    font-family: "BIZ UDPMincho", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 1rem;
}

h1, h2, h3 {
    font-weight: 700;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.box {
    background-color: #ddd;
    height: auto;
    margin: 15px;
    padding: 12px;
    text-align: center;
    max-width: 750px;
    font-size: 1.1rem;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #000;
    text-align: left;
    padding: 8px;
}