* {
    
    margin: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(to bottom left, #0c1fa0, #023583, #014fb5);
    background-attachment: fixed;
    color: rgb(255, 255, 255);
    margin: 12%;
    font-size: xx-large;
}
.total {
    display: flex;
    height: 60vh;
    width: 65vw;
    background-color: rgb(141, 79, 17);
    justify-content: center;
    align-items: center;
}
.total:hover {
    background-color: rgb(215, 117, 19);
}
.can {
    display: flex;
    height: 48vh;
    width: 53vw;
    border: 3px dotted black;
    justify-content: center;
    align-items: center;
}

/* Button Container Styles */
.button-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
}
.btn {
    padding: 0.5rem 1.5rem;
    background-color: rgb(215, 117, 19);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgb(255, 165, 10);
}

#paper {
    background-color: white; /* White background (bg-white) */
    border: 2px solid #f72606; /* Light pink border (border-pink-200) */
    border-radius: 0.75rem; /* Slightly rounded corners (rounded-xl) */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Small shadow (shadow-sm) */
    overflow: hidden; /* Clip content that overflows */
    width: 100%; /* Full width of the parent container */
    max-width: 710px; /* Limit the maximum width */
    height: 400px; /* Fixed height */
    margin: 0 auto; /* Center the div horizontally */
}


