html {
    height: 100%;
    background: url("scu_logo.jpg") repeat;
    background-size: 150px;
    background-position: top left;
    position: relative;
}

html::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 204, 0.6);
    z-index: -1;
}

body {
    background: #ffffff; 
    font-size: 18px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}

.container {
    position: relative;
    display: inline-block;
    text-align: center;  
}

header {
    position: relative;
    padding: 32px 16px;
    text-align: center;
}

.official {
    position: absolute;
    top: -14px;
    left: -89px;
    transform: rotate(-15deg);
    color: #8C1515;
    font-size: 32px;
    font-weight: 600;
}

.title {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
}

.center {
    text-align: center;
}

.line {
    margin-bottom: 8px;
}
    
.line .num {
    display: inline-block;
    width: 4ch;        
    text-align: right;
    margin-right: 4px;
}

input[type="checkbox"] {
    width: 16px; 
    height: 16px; 
}

.score {
    text-align: center;
    font-size: 50px;
    color: #8C1515;
    font-weight: 700;
    margin-bottom: 20px;
}

.score_title {
    text-align: center;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.comment {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.button {
    background-color: #8C1515;      /* SCU maroon */
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: Arial, sans-serif;
}


