* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main {
    max-width: 50%;
    min-width: 450px;
    width: 650px;
    text-align: center;
    background-color: beige;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgba(255, 255, 255, 1);
    }


    label {
        font-size: 1.2rem;
    }

    input {
        font-size: 1.5rem;
        padding: 1rem;
        outline: none;
        text-align: center;
        color: green;
        border: 1px solid rgb(0, 255, 98);
        width: 80%;
        margin-inline: auto;
    }

    .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 3rem;;
        text-align: left;
    }

    img {
        border-radius: 50%;
        height: 200px;
        width: 200px;
        margin-inline: auto;
    }

    figure {
        text-align: center;
    }


    a {
        text-decoration: none;
        color: black;
       

    }

    caption {
        font-size: 1.2rem;
        padding: 1rem;
    }

    h3 {
        font-size: 1.5rem;
    }


    p {
        font-weight: 600;
        font-size: 1.2rem;
    }

    #bioId {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

   span {
    font-weight: 500;
   }


   .invisible {
    opacity: 0;
   }

   #errorId{
    position: absolute;
    text-align: center;
    color: red;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
   }