
body {
    background-color: rgb(184, 216, 246);
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #34495e;
    text-align: center;
    margin-top: 0;
    font-style: italic;
    margin-bottom: 30px;
}

ul {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 15px 15px 15px 30px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

ul li {
    margin-bottom: 10px;
    color: #333;
}

#quiz {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.question:last-child {
    border-bottom: none;
}

.question label {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

.question input[type="radio"] + br + br {
    display: none;
}

button {
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin: 30px auto 10px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

#examplegraph {
    width: 300px;
    height: 300px;
}

a, p {
    font-size: 22px;
}

#socialcontractheader {
    padding-top: 75px;
}

#beginquiz,#backto {
    padding: 12px 24px;
    background-color: #6bac57;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 20px 0;
}

#beginquiz:hover {
    background-color: #5a9249;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    .question label {
        font-size: 16px;
    }
    
    a, p {
        font-size: 18px;
    }
}