*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth; /* yumuşak sayfa içi link geçişleri için */
    font-size: 2.1svh;
}

body{
    background-color: rgb(228, 228, 228);
    font-family: "Poppins", sans-serif;
}

.paragraph1-title{
    width: 100%;
    height: 8svh;
    font-size: 2.5svh;
    font-weight: 500;
    color: white;
    background-color: rgb(10, 10, 10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.paragraph1-metin{
    width: 100%;
    height: auto;
    padding: 3.5svh;
    margin-bottom: 4svh;
    font-size: 2.1svh;
}

.paragraph2-title{
    width: 100%;
    height: 8svh;
    font-size: 2.5svh;
    font-weight: 500;
    color: white;
    background-color: rgb(85, 85, 85);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.paragraph2-metin{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: rgb(10,10,10);
    color: white;
    font-size: 2.1svh;
    padding-bottom: 6svh;
}

.top-text{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    margin-top: 3svh;
}

.top-text-first{
    width: 50%;
    height: 20svh;
}

.top-text-second{
    width: 50%;
    height: auto;
    padding: 2svh 2svh;
}

#desktop-view{
    display: none;
}

.top-text-first img{
    width: 90%;
    height: 100%;
    margin-left: 5%;
    object-fit: cover;
    border: 2px solid black;
    border-radius: 20%;
}

.second-text{
    width: 100%;
    height: auto;
    padding: 1svh 3.5svh;
}

.paragraph3-title{
    width: 100%;
    height: 8svh;
    font-size: 2.5svh;
    font-weight: 500;
    color: white;
    background-color: rgb(10, 148, 10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.paragraph3-metin{
    width: 100%;
    height: auto;
    padding: 3.5svh;
    padding-bottom: 6svh;
    font-size: 2.1svh;
}

.products-title{
    width: 100%;
    height: 8svh;
    font-size: 2.5svh;
    font-weight: 500;
    color: white;
    background-color: rgb(10, 10, 10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.product-list{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product{
    width: 86%;
    margin-left: 7%;
    height: auto;
    padding-top: 8svh;
    padding-bottom: 10svh;
}

.product a{
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product-image{
    width: 100%;
    height: 40svh;
    border-radius: 5%;
    background: linear-gradient(rgb(172, 172, 172), rgb(209, 209, 209));
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-name{
    width: 100%;
    height: auto;
    padding-top: 3svh;
    font-weight: 500;
    font-size: 2.1svh;
    margin-bottom: 4svh;
}

.detail-button{
    width: 86%;
    height: auto;
    margin-left: 7%;
    background-color: rgb(10, 10, 10);
    color: white;
    font-size: 2.1svh;
    text-align: center;
    font-weight: bold;
    padding: 2svh 1svh;
    border-radius: 2svh;
}

footer{
    width: 100%;
    height: auto;
    color: white;
    background-color: rgb(10, 148, 10);
    font-size: 1.8svh;
    font-weight: 500;
    text-align: center;
    padding: 3svh 0;
}

@media screen and (min-width:800px) {

    html{
        font-size: 1.8vh;
    }

    .paragraph1-title{
        height: 7.8vh;
        font-size: 2.3vh;
        background-color: rgb(10, 10, 10);
    }

    .paragraph1-metin{
        font-size: 1.8vh;
        padding: 4vh 8vh;
        margin-bottom: 5vh;
    }

    .paragraph2-title{
        height: 7vh;
        font-size: 2.3vh;
    }

    .paragraph2-metin{
        font-size: 1.8vh;
    }

    .top-text{
        width: 90%;
        margin-left: 5%;
        margin-top: 7vh;
    }

    .top-text-first{
        width: 20%;
        height: 30vh;
        margin-bottom: 2vh;
    }

    .top-text-second{
        width: 80%;
        padding: 8vh 8vh;
    }

    #desktop-view{
        display: block;
    }

    .top-text-first img{
        border-radius: 10%;
    }

    .second-text{
        display: none;
    }

    .paragraph3-title{
        height: 7vh;
        font-size: 2.3vh;
    }

    .paragraph3-metin{
        font-size: 1.8vh;
        padding: 8vh;
    }

    .products-title{
        height: 7vh;
        font-size: 2.3vh;
    }

    .product{
        width: 40%;
        margin-left: 30%;
        padding-top: 7.8vh;
        padding-bottom: 9.8vh;
    }

    .product-image{
        width: 100%;
        height: 48vh;
        border-radius: 2vh;
    }

    .product-name{
        font-size: 1.8vh;
        text-align: center;
        padding-top: 2.8vh;
        margin-bottom: 3.8vh;
    }

    .detail-button{
        font-size: 1.8vh;
        padding: 1.8vh 0.8vh;
        border-radius: 1.8vh;
    }

    footer{
        font-size: 1.5vh;
        padding: 2vh 0;
    }
}