@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*#00b7ff*/

body {
    background-image: url(background.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: contain;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background-color: #dacbba;
    border-bottom: 5px solid #A4907C;
    position: sticky;
    top: 0;
}

.header-text {
    color: #eeeeee;
    font-size: 50px;
    font-weight: 600;
    text-shadow: 1.5px 1.5px 0 #888888;
}

.section1 {
    padding: 80px 0px 60px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.section1-counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #C8B6A6;
    border-radius: 20px;
    padding: 30px 100px;
    box-shadow: 0 0 15px #3f3f3f;
}

.section1-counter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section1-img {
    border: 3px solid #A4907C;
    border-radius: 30px;
}

.section1-counter-btn {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    border: 2px solid #A4907C;
    font-size: 25px;
    background-color: #eeeeee;
    cursor: pointer;
    transition: 0.3s ease;
    color: #7a6c5b;
}

.section1-counter-btn:hover {
    transform: scale(0.95);
}

.section1-counter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eeeeee;
    border: 2px solid #A4907C;
    border-radius: 30px;
    height: 60px;
    width: 250px;
    font-size: 38px;
    font-weight: 300;
    margin: 0px 10px;
    color: #7a6c5b;
}

@media only screen and (max-width: 930px) {
    .section1-img {height: 450px;}
}

@media only screen and (max-width: 810px) {
    .section1-img {height: 350px;}
    .section1-counter-btn {height: 50px; width: 50px;}
    .section1-counter-number {height: 50px;}
}

@media only screen and (max-width: 670px) {
    .section1 {padding: 40px 0px;}
    .section1-img {height: 250px;}
    .section1-counter-btn {height: 40px; width: 40px;}
    .section1-counter-number {height: 40px; width: 200px; font-size: 30px;}
    .section1-counter-container {padding: 30px 60px;}
}

@media only screen and (max-width: 500px) {
    .section1-img {height: 220px;}
    .section1-counter-btn {height: 40px; width: 40px;}
    .section1-counter-number {height: 40px; width: 150px; font-size: 30px;}
    .section1-counter-container {padding: 20px 30px;}
    .header {height: 80px; border-width: 3px;}
    .header-text {font-size: 35px;}
}