html {
  height: 100%;
  width: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: #282c34;
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 80%;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 40px;
    line-height: 1.6;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    background-image: radial-gradient(ellipse at bottom, #ff7e5f 0%, #feb47b 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 126, 95, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 126, 95, 0);
    }
}


/* The CSS for body, container, h1, p, circle, and keyframes remains unchanged */

.contact {
    margin: 20px 0 40px;  /* Adjusted margin for spacing */
}

.contact p, .contact a {
    margin: 0;
    font-size: 1em;
    /*line-height: 1.6;*/
}

.contact a {
    color: #feb47b;
    text-decoration: none;
    display: inline-block;  /* Making the link block-level for better clickability */
    /* margin-top: 10px;  /* Added space above email address */
    transition: color 0.3s;
}

.contact a:hover {
    color: #ff7e5f;
}

