html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #222;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 20px 0;
}

a {
    display: block;
    color: white;
    font-size: larger;
    font-weight: bold;
    margin: 10px 0;
    background: #444;
    padding: 10px 20px;
    border-radius: 10px;
    transition: .5s;
    text-align: center;
}

a:visited {
    color: white;
}

a:hover {
    background: #0b8100;
}

a:active {
    background: limegreen;
}

.hr-line {
    border: solid white 1px;
    width: 80%;
}

.links {
    margin: auto;
    width: fit-content;
}

.formus {
    margin: 20px auto;
    width: 30%;
    background: #444;
    padding: 30px 20px;
    border-radius: 15px;
}

input[text] {
    width: 40%;
}

.product {
    background: #444;
    min-width: 500px;
    padding: 10px;
    border-radius: 15px;
}

.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}