@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #968751;
    color: #e9e4e4;
    font-family: 'PT+Sans', sans-serif;
    font-weight: 530;
}

header {
    padding: 2rem;
    background-color: #314b54;
    text-align: center;
}

main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
}

section.apre {
    width: 100%;
}

h2 {
    color: #e9e4e4;
    font-size: 1.2rem;
}

p {
    background-color: #314b54;
    padding: 1rem;
    border-radius: 7px;
}

ul li {
    background-color: #314b54;
    padding: 0.5rem;
    border-radius: 7px;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: underline;
    color: #e9e4e4;
}
