body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    font-family: Roboto, sans-serif;
    color: #FFFFFF;
    height: 100vh; /* Ensure the body takes up the full viewport height */
    margin: 0; /* Remove default body margin */
}

.card {
    max-width: 100%; /* Allow the card to expand to the full screen width */
    width: 500px; /* Set a maximum width for the card */
    border-radius: 15px;
    border-style: solid;
    border-width: 1px;
    border-color: #808080;
    text-align: center;
    overflow: hidden;
}

    .card h1, a, i{
        color: #FFFFFF;
    }

    .card h1{
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 35px;
    }

    .card a {
        display: block;
        padding: 10px;
        font-size: 16px;
        font-weight: normal;
        text-decoration: none;
    }
        .card a:hover{
            border-radius: 15px;
            background-color: #121212;
            transform: scale(1.1);
        }
    .card p {
        display: block;
        padding: 10px;
        font-size: 16px;
        font-weight: normal;
        text-decoration: none;
    }
        .card p:hover{
            border-radius: 15px;
            background-color: #121212;
            transform: scale(1.1);
        }

    .card img{
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        color: #121212;
    }

    .card ul {
        margin: 10px;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #121212;
    }
        .card ul a{
            padding-right: 20px;
            padding-left: 20px;
            display: inline;
        }
            .card ul a i:hover{
                transform: scale(1.5);
            }

    .card .details {
        border-collapse: collapse;
        width: 100%;
    }

        .card .details td, th {
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 5px;
            padding-right: 5px;
        }
        .card .details td:first-child,
        .card .details th:first-child {
            padding-left: 15px;
        }
        .card .details td:last-child,
        .card .details th:last-child {
            padding-right: 15px;
}



.banner{
    height: 100px;
    width: 100%;
    padding-top: 30px;
    background-size: cover;
    background-position: center;
}

.card .banner{
    background-image: url("banner.jpeg");
 }

.avatar{
    height: 100px;
    width: 100px;
    margin: auto;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
}

.card .avatar{
    background-image: url("https://s.gravatar.com/avatar/0660cf7d0b1c40bb84525a6415038260?s=500");
 }

.title {
    color: #808080;
    font-size: 20px;
}

.title_underline {
    color: #808080;
    font-size: 16px;
}

/* Style the button */
.icon-button {
    background-color: transparent; /* Make the background transparent */
    border: none; /* Remove the button border */
    cursor: pointer; /* Change cursor to a pointer on hover (optional) */
}

/* Style the icon inside the button */
.icon-button i {
    font-size: 16px; /* Adjust the icon size as needed */
}

