:root {
    --primary-color: #EC008C;
    --background-color: #f0f8ff;
}

h1, h2, h3, h4, h5 {
    color: var(--primary-color);
    font-style: italic;
}

s {
    text-decoration: line-through;
    text-decoration-color: #EC008C;
}

p {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
}

body {
    font-family: Arial, sans-serif;  
}

.main-application-main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    text-align: center;
    align-items: center;
}

.main-application-container {
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 80%;
    margin: auto;
    padding: 20px;
}

.heading-svg {
    width: 60%;
    height: 60%;
}

.application-button-container {
    margin: 10px 0;
}

.application-button {
    background-color: var(--primary-color);
    color: white;
    width: 200px;
    height: 80px;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    margin: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.application-footer-main-container {
    position: relative;
    height: 100px;
    margin-top: 20px;
    text-align: center;
}

.application-footer-container {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}

.application-footer-container.heart {
    width: 150px;
    height: 150px;
    border-radius: 50px 50px 0 0;
    transform: rotate(45deg) translate(-50%, -50%);
    background-color: var(--primary-color);
    animation: shrink 1s ease forwards;
}

@keyframes shrink {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.footer-svg {
    width: 60%;
    height: 60%;
}
