html {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    height: 100%; /* Set html to full height */
}


*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font: normal 24px/1.4 Source Sans Pro, system-ui, sans-serif;
    margin: 0;
    color: #fff;
    background-color: #101019;
    min-height: 100%; /* Set body to at least full height */
    display: flex;
    flex-direction: column; /* Add flex-direction */
}

a {
    color: #ac3939;
    text-decoration-thickness: from-font;
}



.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:10px;
}

.bio {
    text-align: center;

    background-color: #1c1c24;
    padding: 20px;
    border-radius: 10px;
}


.profile-image {
    display: inline-block;
    margin-right: 10px;
}

.profile-image img {
    width: 80px; /* Adjust the width as needed */
    height: auto;
    border-radius: 50%; /* For a circular profile image */
}
.bio h1 {
    font-size: 40px;
    margin: 0;
    color: #e60000;
}

.bio p {
    margin: 8px 0;
    font-size: 20px;
}

.bio-links {
    background-color: #1c1c24;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.bio-links p {
    margin: 0;
    font-size: 25px;
    color: #7f9084;
    line-height: 1.5;
}

.bio-description {
    text-align: center;
}

.links ul {
    list-style-type: none;
    padding: 0;
    font-size: 20px;
    color: #7f9084;
}

.links li {
    margin-top: 16px;
}

.links a {
    font-size: 24px;
}

.list-inline {
    display: inline-block;
    margin-right: 10px;
    text-align: left;
    font-size: 22px;
    color: #7f9084;
}

.list-inline a {
    color: #ac3939;
    text-decoration: none;
}


.list-inline-item {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .bio h1 {
        font-size: 32px;
    }
}


@keyframes backgroundAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}
