body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: white;
    margin-bottom: 15px;
}

.module {
    border: 0.5px solid black;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.module h2 {
    font-size: 22px;
    text-align: center;
    margin: 14px auto;
    font-weight: 500;
}

.module hr {
    width: 80%;
    margin: auto;
    border: none;
    height: 1px;
    background-color: grey;
}

main {
    background-color: var(--felt-color);
    height: var(--felt-height);
    width: 700px;
    position: relative;
}

#shoe {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 150px;
}

#shoe img {
    width: 100%;
    transition: transform 0.3s ease;
    transform-origin: top left;
}

#shoe:hover img {
    transform: scale(2);
}

#menu {
    color: white;
    width: 300px;
    position: absolute;
    right: 30px;
    top: 30px;
}

#menu label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menu label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

#menu label span {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

#menu label:hover input ~ span {
    background-color: #ccc;
}

#menu label input:checked ~ span {
    background-color: #2196F3;
}

#menu label span:after {
    content: "";
    position: absolute;
    display: none;
}

#menu label input:checked ~ span:after {
    display: block;
}

#menu label span:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 640px;
    font-size: 22px;
    color: white;
    text-align: center;
}

#info p {
    margin: 10px;
    visibility: hidden;
}

#info button {
    width: 180px;
    height: 45px;
    padding: 8px;
    font-size: 20px;
    margin: 5px 5px 20px 5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease; 
    background-color: #dfdfdf;
}

#info button:hover {
    background-color: white;
    border: 1.5px solid black;
}





