main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

main h1 {
    margin-block: 30px;
}

main section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

main section div img {
    height: 300px;
    width: 300px;
    object-fit: contain;
    background-color: white;
    border: var(--secondary) 10px solid;
    border-radius: 5px;
}

main section div button {
    padding: 10px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

main section div button:hover {
    background-color: var(--secondary);
    transition: .5s;
}

main section table {
    border: var(--support) 3px solid;
    border-collapse: collapse;
    width: 60vw;
}

main section table tr {
    height: 50px;
    border-bottom: 1px solid #ccc;
}

main section table th:nth-child(even) {
    background-color: var(--detail);
}

main section table td {
    text-align: center;
}

main section table th {
    background-color: #f2f2f2;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
}

main section table td img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}