/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Arvo');

/* RPG Character Generator Styles */
body {
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: antiquewhite;
    font-family: Arvo;
    font-size: 100%;
    max-width: 800px; /* Adjusted to fit the container width */
    margin: 20px auto; /* Adjusted to center the container */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


h1 { font-family: Arvo; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: Arvo; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: Arvo; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: Arvo; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: Arvo; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }

.character {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.attribute {
    margin-bottom: 10px;
    width: 100%;
}

.name {
    font-size: 24px;
    font-weight: bold;
    color: #ff9933; /* Adjusted to a 90s-inspired color */
}

.value { font-family: Arvo; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; } h3 { font-family: Arvo; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; } p { font-family: Arvo; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } blockquote { font-family: Arvo; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } pre { font-family: Arvo; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; }

.separator {
    width: 100%;
    border-bottom: 1px solid #ffffcc;
    margin: 10px 0;
}

a:link, a:visited {
    color: green;
}

a:link:active, a:visited:active { 
    color: pink;
}
