:root {
    --main-green: #006400;
    --hover-green: #4f814f;
    --dark-green: #218838;
    --light-green: rgba(34, 139, 34, 0.6);
    --text-gray: #555555;
    --light-gray: #dadada;
    --background-light: #e0e5e8;
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h2 {
    font-size: clamp(1rem, 0.4821rem + 4.4643vw, 4.5rem);
    font-weight: inherit;
}

.section__title {
    text-align: center;
}

.__section__heading {
    font-size: clamp(1.25rem, 1.0357rem + 1.0714vw, 2rem);
    font-weight: 700;
}


/* Buttons */

.button-play {
    color: #fff;
    text-align: center;
    padding: clamp(0.625rem, 0.3571rem + 1.3393vw, 1.5625rem) clamp(0.625rem, 0.2679rem + 1.7857vw, 1.875rem);
    background-color: var(--main-blue);
    border-radius: 5px;
    transition: 0.3s ease;
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
}

.button-play:hover {
    background-color: var(--hover-blue);
}

.button-info {
    color: #fff;
    text-align: center;
    padding: clamp(0.3125rem, 0.1339rem + 0.8929vw, 0.9375rem) clamp(0.625rem, 0.3571rem + 1.3393vw, 1.5625rem);
    background-color: var(--highlight-green);
    border-radius: 5px;
    transition: 0.3s ease;
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
}

.button-info:hover {
    background-color: rgba(34, 139, 34, 0.6);
}

.button-secondary {
    color: var(--dark-blue);
    text-align: center;
    padding: clamp(0.3125rem, 0.1339rem + 0.8929vw, 0.9375rem) clamp(0.625rem, 0.3571rem + 1.3393vw, 1.5625rem);
    background-color: var(--light-gray);
    border-radius: 5px;
    transition: 0.3s ease;
    font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1rem);
}

.button-secondary:hover {
    background-color: rgba(240, 244, 248, 0.8);
}




/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

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

/* Links */
a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

h1 {
    font-size: 2.5rem !important;
}

h2 {
    font-size: 2rem !important;
    line-height: 33px !important;
}

ul,
ul li {
    /* list-style: none; */
}

img {
    vertical-align: top;
}

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

address {
    font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

.ter {
    border: 5px dashed #ffc008;
    padding: 20px;
}

.grems {
    position: relative;
    height: 600px;
    width: 100%;
}

.grems img {
    position: absolute;
    left: 20px;
    bottom: 10px;
    height: 100px;
    width: 100px;
}

.tev {
    padding: 10px !important;
}

.gams {
    transition: transform 0.3s ease;
    transform: scale(0.8);
}

.gams:hover {
    transform: scale(1);
}

@media screen and (max-width: 968px) {
    .ter {
        padding: 5px;
    }

    .welcome__content {
        border-radius: 10px;
        padding: 14px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    .grems {
        height: 300px;
    }

    .grems img {
        position: absolute;
        left: 10px;
        bottom: 5px;
        height: 50px;
        width: 50px;
    }

    .card-img-top {
        padding-bottom: 20px;
    }

    .mer {
        flex-wrap: wrap;
    }

    .tev {
        padding: 5px !important;
    }


}