* {
    margin: 0px;
    padding: 0px;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header {

}

#HeadNav {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
}


#HeadIconsLeft {
    color: white;
    list-style: none;
    display: flex;
    gap: 50px;
    margin-right: 500px;
}

#HeadIconsRight {
    color: white;
    list-style: none;
    display: flex;
    gap: 50px;
    margin-left: 500px;
}

i {
    font-size: 35px;
}

a {
    color: white;
}

#HeadLogo {
    height: 100px;
    width: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

#ProductSect {
    display: grid;
    grid-template-rows: repeat(3,1fr);
    place-items: center;
    gap: 50px;
    flex: 1;
}

.Products {
    height: 500px;
    width: 400px;
    border: solid black 10px;
    border-radius: 10px;
    margin: 100px;
    transition: transform 0.3s ease;
}

.Products:hover {
    transform: scale(1.1);
}

p {

}

.ProdDiv {
    display: inline-flex;
    justify-content: center;
}

#FootNav {
    background-color: black;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
}

#FootIcons {
    color: white;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 1100px;
}

#Line {
    border: 2px solid white;
    border-radius: 2px;
}

#Contact {
    text-decoration: none;
    border: 10px solid white;
    padding: 10px;
}

#FootLogo {
    height: 70px;
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1150px;
}

