@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-color:rgb(250, 158, 30);
    --secondary-color:rgb(102, 102, 102);
    --heading-font: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    font: inherit;
    color: inherit;
}

body {
    margin: 0;
    color: #222;
    font-family: 'Poppins', sans-serif;
    background: #f8f8f8;
}

section {
    padding: 74px 0;
}

h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 35px;
}

b {
    font-weight: 600;
    color: var(--secondary-color);
}

a {
    color: rgb(32, 110, 189);
}

a:visited {
    color: var(--secondary-color);
}

strong {
    font-weight: 600;
}

footer {
    padding-bottom: 10px;
}

.container {
    max-width: 1200px;
    padding: 24px;
    margin: 0 auto;
}

.section-name {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.section-name-big {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.2rem;
    padding-bottom: 24px;
}

.title h1 {
    width: 10%;
    display: flex;
    margin: auto;
    justify-content: center;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 0 30px #000000;
}

input:focus { 
    outline-color: var(--primary-color);
}

textarea:focus { 
    outline-color: var(--primary-color);
}