* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    height: 100%;
}

body {
    font-family: Arial, serif;
    padding: 20px;
    background: #f3ebdd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

img {
    width: 90%;
    max-width: 300px;
}

input {
    padding: 10px;
    font-size: 16px;
    border: none;
    background: transparent;
    border-bottom: 1px solid #000;
    width: 100%;
    outline: none;
}

.btn-container {
    margin: 0 auto;
    display: flex;
    gap: 25px;
}

.button {
    padding: 10px 15px;
    background: #b35112;
    color: #fff;
    outline: none;
    border: none;
    font-size: 16px;
    transition: all .3s;
    cursor: pointer;
}

.button:hover{
    background: #98430e;
}

.container {
    width: 90%;
    max-width: 500px;
}

h2 {
    margin-block: 20px;
}

.order {
    margin: 30px 0;
}

.name, .size {
    display: flex;
    justify-content: space-between;
}

.name p, .size p {
    white-space: nowrap;
}

.name::after, .size::after {
    content: "";
    flex: 1;
    border-bottom: 1px dashed #666;
    margin: 0.5rem 0.5rem;
}

.name p:first-child,
.size p:first-child {
    order: 0;
}

/* Ensure right text stays on the right */
.name p:last-child,
.size p:last-child {
    order: 2;
}

.seperator {
    width: 100%;
    height: 1px;
    background: #000;
}