@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: 32px;
    margin: 1.5rem 0;
}

.details {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    color: #444;
    gap: 0.5rem;
}

.details li {
    margin-right: 15px;
    display: flex;
    align-items: center;
    width: 45%;
}

.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 {
    list-style: disc;
    margin-left: 30px;
    line-height: 1.6;
}

ul li::marker {
    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;
    }

    .btn {
        padding: 8px 15px;
    }

    .banner {
        height: auto;
    }

    .person {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 40rem) {

}

