@import url('https://fonts.googleapis.com/css?family=Raleway');

body {
    font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
    color: #3a3a3a;
}

.body-container {
    width: clamp(1024px, calc(100% - 512px), 100%);
    background-color: rgba(255, 242, 235, 0.8);
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

h1 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #a2a9b1;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

p {
    font-size: inherit;
    font-weight: 400;
    line-height: 1.25;
    margin: 10px 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

strong {
    color: #444;
}

a {
    color: #00f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}