body {
    font-family: Arial, sans-serif;
    font-size: 12pt;
    color: #002767;
}

#wrapper {
    max-width: 990px;
    margin: 20px auto;
    box-shadow: 0px 0px 15px 3px #ccc;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

header {
    position: relative;
    padding-top: 12.5%;
}
#header_pic {
    width: 93%;
}
#logo {
    position: absolute;
    height: 100%;
    top: 0;
}

#panel {
    margin-right: 7%;
    background-color: #E8E4E1;
    padding-bottom: 40px;
}
#panel > div {
    padding: 1em 3% 0 10%;
}
#intro {
    columns: 2;
    column-gap: 40px;
}

#title {
    font-size: 2.2em;
    font-weight: bold;
}
#title_post {
    font-size: 1.6em;
    color: #438ABD;
    font-weight: bold;
    margin: 20px 0;
}

h1 {
    font-size: 1.2em;
    color: #438ABD;
    margin-top: 2em;
}
p {
    margin: 0.5em 0;
}
p:not(:has(b)) + p:has(b) {
    margin-top: 2em;
}
ul {
    padding-inline-start: 20px;
    break-inside: avoid;
}
ul li {
    list-style: "–  ";
}
a {
    color: inherit;
    font-weight: bold;
    transition: all 250ms;
}
a:active, a:hover {
    outline: none;
    color: #438ABD;
}

footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3% 7% 3% 10%;
}
#footer_info {
    font-size: 0.6em;
    flex: 0 0 fit-content;
}
#footer_logo {
    max-width: 250px;
}

@media screen and (max-width:800px) {
    #title {
        font-size: 1.6em;
    }
    #title_post {
        font-size: 1.4em;
    }
    #intro {
        columns: 1;
    }
}