/*
Theme Name: My Awesome Theme
Theme URI: https://www.myawesometheme.com
Author: John Doe
Author URI: https://www.johndoe.com
Description: My Awesome Theme is a responsive, modern, and feature-rich WordPress theme designed for all kinds of websites. It comes with a custom homepage layout, multiple widget areas, and full compatibility with popular plugins.
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: my-awesome-theme
Tags: responsive, modern, custom-background, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/


/* *,
*:before,
*:after {
    box-sizing: border-box;
}
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --orange: #F47230;
    --purple: #7370C8;
    --dark: rgba(0, 0, 0, 0.4);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 22px;
}

@media only screen and (max_width: 768px) {
    html {
        font-size: 1.14vw;
        /* 22/1920*100 */
        /* font-size: 20px;*/
    }
}

@media only screen and (max_width: 480px) {
    html {
        font-size: 18px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: var(--purple);
}

p,
li {
    line-height: 1.5;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

ul li::marker {
    color: var(--purple);
}

ol {
    padding-left: 1.5rem;
}

ol li::marker {
    color: #fff;
    font-weight: bold;
}

ol li {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    padding-left: 10px;
}

ol li::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: var(--orange);
    display: block;
    position: absolute;
    left: -1.5rem;
    top: 0;
    z-index: -1;

}

h1,
h2,
h3 {}

h1 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-top: 0;
    position: relative;
    padding-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

.home h2 {
    text-transform: uppercase
}

.button,
input[type=submit] {
    display: inline-block;
    padding: 12px 20px;
    color: #000;
    background: var(--orange);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
}

blockquote {
    background: var(--dark);
    padding: 0.5rem 1rem;
    margin-left: 0;
    border-left: solid 5px var(--purple);
}

.align-center {
    text-align: center;
}
