/* Reset some basic styles */
body, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

/* Body styling */
body {
    background-color: white;
    font-family: "Times New Roman", Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 1rem;
}

/* Container for headings */
.container {
    max-width: 800px;
}

/* BTC.com.jm heading */
.main-heading {
    font-size: clamp(2.5rem, 8vw, 4rem);
    background: linear-gradient(to right, black, green, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Subheading */
.sub-heading {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: black;
    margin-bottom: 1rem;
}

/* Email heading */
.email-heading {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.email-heading a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-heading a:hover {
    color: green;
}
