:root {
    --accent-color-y: #FABE3E;
    --accent-color-g: #D0D237;
    --accent-color-b: #95B6D6;
    --background-color: #FCFCFC;
    --text-color: #313542;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: currentColor;
    text-decoration: none;
    font-style: normal;
    display: inline-block;
}

a:hover {
    color: currentColor;
    text-decoration: none;
}

button {
    cursor: pointer;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}


body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: "Montserrat", sans-serif;
}

.transparent-btn {
    border: none;
    background-color: transparent;
}

.title {
    font-size: 26px;
}

.text {
    font-size: 12px;
}

@media screen and (min-width: 470px) {
    .title {
        font-size: 32px;
    }

    .text {
        font-size: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .title {
        font-size: 24px;
    }

    .text {
        font-size: 12px;
    }
}

@media screen and (min-width: 1500px) {
    .title {
        font-size: 32px;
    }

    .text {
        font-size: 16px;
    }
}