@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v12-latin-regular.eot');
    src: url('../fonts/inter-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), url('../fonts/inter-v12-latin-regular.woff') format('woff'), url('../fonts/inter-v12-latin-regular.ttf') format('truetype'), url('../fonts/inter-v12-latin-regular.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v12-latin-500.eot');
    src: url('../fonts/inter-v12-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v12-latin-500.woff2') format('woff2'), url('../fonts/inter-v12-latin-500.woff') format('woff'), url('../fonts/inter-v12-latin-500.ttf') format('truetype'), url('../fonts/inter-v12-latin-500.svg#Inter') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v12-latin-600.eot');
    src: url('../fonts/inter-v12-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/inter-v12-latin-600.woff2') format('woff2'), url('../fonts/inter-v12-latin-600.woff') format('woff'), url('../fonts/inter-v12-latin-600.ttf') format('truetype'), url('../fonts/inter-v12-latin-600.svg#Inter') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #27272A;
    font-family: 'Inter', 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: #FFFFFF;
    border: solid .062rem #000;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 .625rem;
}

strong {
    font-weight: 500;
}

h1 {
    margin: 0 0 .625rem;
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    margin: 2.25rem 0 1.25rem;
    font-weight: 500;
}

hr {
    border-top: .062rem solid rgb(227, 230, 233);
    margin-bottom: 1.875rem
}

ul {
    list-style: none;
    margin: 0 0 1.875rem;
    padding: 0;
}

ul li {
    position: relative;
    list-style: none;
    margin: .75rem 0 .75rem 1.5rem;
    padding: 0;
}

ul li:before {
    content: "";
    display: block;
    width: .375rem;
    height: .375rem;
    background: rgb(42, 115, 255);
    border: .187rem solid rgb(233, 243, 255);
    border-radius: 50%;
    position: absolute;
    left: -1.5rem;
    top: .375rem;
}

.emoji {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.emoji p {
    margin: 0;
}

header,
article,
footer {
    padding: .312rem 1.25rem;
}

header p {
    display: inline-block;
    font-size: 1rem;
    margin: 0 1.562rem .937rem 0;
    color: #52525B;
}

hr {
    border: none;
    border-top: 1px solid #E3E3E5;
}

aside {
    background-color: #F8F9FA;
    padding: 1.25rem;
    border-radius: .625rem;
}

section p {
    display: inline-block;
    font-size: 0.875rem;
    padding-right: 0.625rem;
    color: rgb(95, 104, 117);
}

.flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0
}

.flex p {
    font-size: 1.2rem;
    margin: 0;
}

.flex2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socials {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.socials p {
   background-color: #ededed; 
   padding: 0.25rem 0.5rem;
   border-radius: 1rem;
}

.socials p:hover {
    background-color: #d0d1d1;
}

.element {
    display: block;
    background: #2563EB;
    opacity: 0.9;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: .625rem .625rem;
    width: 20.312rem;
    margin: 1.25rem auto;
    border-radius: .625rem;
}

.element:hover {
    background: #1D4ED8;
}

i {
    padding-right: .625rem;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header,
    article,
    foorter {
        padding: .312rem 1rem;
    }

    header p {
        display: block;
        margin: 0 0 .937rem 0;
    }

    section p {
        display: block;
    }

    .flex {
        width: 20rem;
    }

    main img {
        margin: 0 .625rem 1.25rem 0
    }

    h1 {
        font-size: 1.562rem;
    }
}

@media only screen and (max-width: 24.937rem) {
    element {
        display: inline-table;
    }
}