@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* GENERAL */

body {
    font-family: "Kanit", sans-serif;
    background-color: #1e1d2b;
}

.container {
    padding: 2%;
}

p {
    margin: 0;
}

.textColor {
    color: #d9d9d9;
}

.font20 {
    font-size: 20px;
}

.font500 {
    font-weight: 500;
}

.font2 {
    font-size: 2rem;
}

.center {
    text-align: center;
}

.linkDownTexts {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
}

.icons {
    text-decoration: none;
}

/* HEADER */

.header {
    display: grid;
    grid-template-columns: 20% 80%;
}

.logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.logoMainPage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    width: 100%;
}

.close {
    display: flex;
    justify-content: end;
    text-decoration: none;
    color: white;
    font-size: 4rem;
}

/* PICTURE AND DETAILS */

.pictureDetails {
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 5%;
}

.picture {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9d9d9;
    width: 100%;
    border-radius: 1%;
}

.pictureContent {
    width: 75%;
}

.mainDetails {
    padding: 10%;
}

.buyButton {
    background-color: #d9d9d9;
    font-size: 1.5rem;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    color: black;
}

/* DETAILS AND REVIEWS */

.details {
    display: flex;
    flex-direction: column;
    padding: 2%;
}

.reviews {
    padding: 1% 5% 1% 5%;
}

/* CONTACT */

.contact {
    background-color: #2c2b47;
    padding: 5%;
}

.listContact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    padding: 1%;
}

.titleContact {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: larger;
    font-weight: 600;
    font-size: 1.5rem;
}

.hrContact {
    width: 30%; 
    border: 1px solid #d9d9d9;
}

.links {
    padding: 4%;
}

i:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width :840px) {
    .down {
        grid-template-columns: 100%;
    }
}