/*
Theme Name: MyTheme
Author: Your Name
Version: 1.0
Text Domain: mytheme
*/

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Comfortaa,Manrope,Montserrat/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    background: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.container {
    width: min(1440px, calc(100% - 80px));
    margin-inline: auto;
}

@media (max-width: 991px) {
    .container {
        width: min(1440px, calc(100% - 48px));
    }
}

@media (max-width: 600px) {
    .container {
        width: min(1440px, calc(100% - 32px));
    }
}