* {
    box-sizing: border-box;
}

:root {
    --black: #1e201f;
    --dark-pink: #cc2776;
    --magenta: #FF7C93;
    --yellow: #F9DB00;
    --cyan: #39EDD5;
    --key: #453A64;
}


@font-face {
    font-family: Pretendard JP;
    src: url(/font/pretendard-jp.ttf);
}

body {
    font-family: MS PGothic, Pretendard JP;
    font-size: 20px;
background: var(--magenta);
background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

main.kita {
    background: white;
    color: var(--dark-pink);
    border: 2px solid var(--dark-pink);
    border-radius: 10px;
    padding: 45px;
    width: 1300px;
    height: fit-content;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

#head-title {
    font-size: 50px;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 8px;
    margin-bottom: 8px;
    
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

::selection {
    color: white;
    background: var(--dark-pink)
}

table, tr, td, th {
    border: var(--dark-pink) 2px solid;
    border-collapse: collapse;
    margin: auto;
}

td, th {
    padding: 10px;
    text-align: center;
}

#cyan {
    color: var(--key);
    background: var(--cyan)
}

#magenta {
    color: var(--key);
    background: var(--magenta)
}

#yellow {
    color: var(--key);
    background: var(--yellow)
}

#key {
    color: var(--yellow);
    background: var(--key)
}

ul {
    width: 100%;
}