@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
        background: #fff;
    border: 1px solid #ededed;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.color {
    color:#0c77bd;
}

a.link {
    color: #0c77bd;
    text-decoration: underline;
}

h1 {
    font-size: 2.5rem;
    color: #032950;
    margin: 1rem 0;;
}

h1 span {
    font-weight: 400;
    font-size: 1.4rem;
}

h2 {
    font-size: 1rem;
    text-decoration: underline;
    color: #0c77bd;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin:0 0 2rem 1.687rem;
    list-style: none;
}


ul li:before {
    content: "\25A0";
    color: #0c77bd;
    font-size: 1.25rem;
    float: left;
    margin: -0.4rem 0 0 -1.5rem;
}


main {
    padding: 1rem 2rem;
}

.content {
    display: flex;
    gap: 1rem;
}

article {
    width: 65%;
    border-right: 1px solid #0c77bd;
    padding-right: 2rem; 
}
aside {
    width: 35%;
    padding-left: 1rem;
    margin-top: -2rem;
}

.button {
    display: inline-block;
    background-color: #f07d00;
    color: #fff;
    font-weight: 700;
    padding: 0.25rem 2.5rem;
    transform: rotate(-3deg);
    transform-origin: center;
}

.margin {
    margin-bottom: 3rem;
}

footer {
    background-color: #032950;
    height: 1rem;
}

@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) {
    .content {
        flex-direction: column;
        gap: 2rem;
    }

    article,
    aside {
        width: 100%;
    }

    article {
        border: none;
        padding-right: 0;
    }
    aside {
        padding-left: 0;
    }

    .button {
    transform: rotate(0deg);
    }

    .margin {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 40rem) {

    main {
        padding: 1rem;
    }
}

