@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #1a0f91;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 2rem;
    color: #7cb1f7;
    text-align: center;
    margin: 1rem 0;
}

h2 {
    font-size: 1.15rem;
    color: #1a0f91;
    text-align: center;
    margin: 1rem 0;
}

h3 {
    font-size: 1.2rem;
    color: #7cb1f7;
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

ul li {
    margin-bottom: 0.25rem;
}
  
header {
    position: relative;
    z-index: 100;
}

header .man {
    border-bottom: 10px solid #7cb1f7;
    width: 100%;
}

.logo {
    background-color: #fff;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
    width: 20rem;
    padding: 3rem 1rem;
    margin: -5rem auto;
    position: relative;
    z-index: 1000;
}

article {
    padding: 5rem 1rem 2rem;
}

footer {
    border-bottom: 2rem solid #7cb1f7;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {

}

@media only screen and (max-width: 40rem) {

}

