body {
    color: black;
    margin: 5%;
    margin-top: 5%;
    width: 90%;
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
}

#content h2 {
    margin-bottom: 10px; /* adjusting margin after h2 */
}

/* Links */
a {
    color: #0366d6;
    text-decoration: none;
}

a:visited {
    color: #0366d6;
}

a:hover {
    color: #0366d6;
    text-decoration: underline;
}

a.black-link {
    color: black;
    text-decoration: none; /* removes the underline by default */
}

/* Images */
img.rounded-corners {
    border-radius: 50%;
}

/* Custom containers */
#container {
    width: 75%;
    padding: 5%;
    margin: 5%;
}

#sidebar {
    float: right;
    width: 25%;
    background: #F5F5F5;
    padding: 5%;
    margin: 5%;
    clear: right;
    border: 2px solid #00ff00;
}

#content {
    overflow: hidden;
    margin: 5%;
    margin-left: 10%;
    padding: 5%;
}

.curve {
    width: 60%; /* Adjust the width as needed */
    height: 50vw; /* 50% of the viewport height; adjust as needed */
    background-color: transparent;
    border-radius: 50% 0 0 0 / 50% 0 0 0;
    border: 2px solid #000;
    text-align: center;
    line-height: 50vw; /* Center the text vertically */
    position: relative;
}

/* EXTRA STUFF FOR SMALL SCREENS */
@media only screen and (max-width: 768px) {
    /* Your mobile-specific styles here */
    body {
        margin: 2%;
        font-size: smaller;
        /* Adjust other properties */
    }

    #container {
        width: 90%;
        padding: 2%;
        margin: 2%;
    }

    #sidebar {
        width: 90%;
        padding: 2%;
        margin: 2%;
        /* Adjust other properties */
    }

    #content {
        margin-left: 0;
        /* Adjust other properties */
    }
}



button {
    color: #ff00ff; /* Neon Pink Text */
    border: 2px solid #00ff00; /* Neon Green Border */
    background-color: white;
    padding: 5px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

/* Tooltip styling */
button::after {
    content: "copy"; /* Hover text */
    color: #00ff00; /* Neon Green */
    background-color: transparent;
    padding: 5px;
    font-size: 12px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    border-radius: 3px;
}

/* Show tooltip on hover */
button:hover::after {
    visibility: visible;
}

/* Change text when button is clicked */
button:active::after {
    content: "!!!";
    visibility: visible;
}