@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font: 1em/1.5 "Arial", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background-color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

header {
    margin-bottom: 20px;
}

.logo {
    background-color: #3a3e45;
    padding: 1rem;
    margin-bottom: 1rem;
}

.header-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    background: #444;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.btn.apply {
    background: #3a3e45;
    color: #fff;
}

.intro h1 {
    color: #9a0f52;
    font-size: 27px;
    margin: 1.5rem 0;
}

.details li:before {
    display: none;
}

.details {
    margin-right: 15px;
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.details i {
    color: #9a0f52;
    margin-right: 5px;
}

.banner {
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
}

article section {
    margin-bottom: 30px;
}

h2,
h3 {
    color: #9a0f52;
    margin-bottom: 10px;
    font-size: 1.25rem;
}


ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 40px;
}

ul li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -20px;
    color: #9a0f52;
}

.contact {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.person {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.person img.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.person a {
    text-decoration: none;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .details {
        flex-direction: column;
        width: 100%;
    }

    .details ul:first-of-type {
        padding-bottom: 0;
    }

    .btn {
        padding: 8px 15px;
    }

    .banner {
        height: auto;
    }

    .person {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 40rem) {}