* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: #1F2937;
    padding-top: 12px;
}
.links {
    margin-right: 25%;
}
.links ul {
    display: flex;
    gap: 8px;
}

a {
    color: rgb(219, 219, 219);
    font-size: 18px;
}

.logo {
    width: 128px;
    height: auto;
    border-radius: 50%;
    margin-left: 25%;
    background-color: white;
}

.description {
    display: flex;
    justify-content: space-between;
    background-color: #1F2937;
    color: white;
    padding-top: 64px;
    padding-bottom: 64px;
}

.ddiv1 {
    margin-left: 25%;
    width: 480px;
}

.ddiv1 button {
    background-color: #3882F6;
    color: white;
    border-radius: 5%;
    border: none;
    height: 36px;
    width: auto;
    font-size: 20px;
}

.ddiv2 {
    width: 480px;
    margin-right: 25%;
}

.ddiv2 img{
    width: 100%;
    height: auto;
    border-radius: 10%;
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: white;
}

.info-block {
    display: flex;
    padding-top: 24px;
    gap: 16px;
}

.product img {
    border-radius: 10%;
    width: 256px;
    height: 256px;
}

.product p {
    width: 256px;
    text-align: center;
}

.hero {
    padding-right: 30%;
    padding-left:  30%;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #E5E7EB;
}

.p1 {
    font-size: 36px;
    color: #1F2937;
}

.p2 {
    text-align: right;
    font-weight: bold;
}

.order {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 48px 35% 48px 35%;
    gap: 48px;
    background-color: #3882F6;
    border-radius: 10px;
}

.order button {
    border: 1px solid white;
    border-radius: 5px;
    font-size: 16px;
    background-color: #3882F6;
    color: white;
}

.footer {
    text-align: center;
    background-color: #1F2937;
    color: white;
    margin: 0;
    padding: 10px;
}