/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root{
    --pink: #F5DED7;
    --yellow: #FBDA91;
    --red: #A73520;

    --container-w: 1440px;
    --container-p: calc((1920px - var(--container-w))  / 2);
}

@media (max-width: 1920px){
    :root{
        --container-p: calc((100vw - var(--container-w))  / 2);
    }
}

@media (max-width: 1470px) {
    :root {
        --container-p: 15px;
    }
}

html, body{
    padding: 0;
    margin: 0;
}

*{
    font-family: Montserrat, sans-serif;
}

body{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100dvh;
}

.container{
    width: 100%;
    max-width: var(--container-w);
    margin-left: auto;
    margin-right: auto;
}

a.btn, .btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--red);
    width: 100%;
    max-width: max-content;
    min-height: 40px;
    border-radius: 6px;
    padding: 5px 20px;
    line-height: 1;
}

a.btn.btn-pink, .btn.btn-pink a{
    background-color: var(--pink);
}

a.btn.btn-yellow, .btn.btn-yellow a{
    background-color: var(--yellow);
}

ul.reset{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

button.reset{
    background-color: transparent;
    outline: none;
    border: none;
}