/* styles.css */

.my-button {
    background-color: #AF1615;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.heading {
    color: #ffffff;
    text-align: left; 
}

body {
    font-family: "Helvetica";
    background-color: #732221;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

/* Ensure all elements fit within the viewport */
* {
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-wrap: no-wrap; /* Allow items to wrap to the next line */
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    margin-top: 20px; /* Add some margin at the top if needed */
    margin-right: 20px;
}

/* Circle button styles */
.circle-button {
    background: #AF1615;
    color: #ffffff;
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 24px;
    font-weight: bold;
    border: none;
    padding: 20px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 210px; /* Adjust the size as needed */
    height: 210px; /* Adjust the size as needed */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition effects */
}

.circle-button:hover {
    transform: scale(1.05); /* Slightly enlarge the button on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Darken the shadow on hover */
}

.circle-button:active {
    transform: scale(0.95); /* Slightly shrink the button on click */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Restore the shadow on click */
}

.text-container {
    flex-grow: 1;
    padding-left: 20px;
    text-align: left; /* Align the text to the left */
    flex-basis: auto; /* Allow the container to adjust its size */
}

.paragraph-large {
    font-size: 28px; /* Large font size for paragraphs */
}

.paragraph-small {
    font-size: 14px; /* Small font size for paragraphs */
}


/* Image container styling */
.image-container {
    margin-top: 20px; /* Space above the image */
    text-align: center; /* Center the image */
}

/* Image styling */
.image-container img {
    max-width: 20%;
    height: auto; /* Ensure the image is responsive */
    border-radius: 8px; /* Optional: Add rounded corners */
}
