@charset "utf-8";
body {
	background-image: url("../img/rabbit_duck_tile.jpeg");
	text-align: center;
	background-size: 250px 250px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar {
    border-radius: 50%;
}

.footer {
	font-size: small;
}
.links {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    min-width: 728px;
    padding-top: 20px;
    padding-bottom: 30px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.button {
    display: inline-flex; /* Use inline-flex to prevent full width */
    align-items: center;     /* Vertically align icon and text */
    justify-content: flex-start; /* Align items to the start (left) */
    width: 97%;
    margin-top: 12px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 12px;
    background-color: #1F1F1F;
    border-radius: 15px;
    padding: 30px;           /* Simplified padding */
    font-size: large;
    font-weight: 900;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    flex: 1;
}

.button .icon {
    margin-right: 15px; /* Space between icon and text */
}

.button span {  /* New: Target the text content specifically */
    text-align: center;  /* Center the text */
    flex-grow: 1;       /* Allow text to expand and center */
}

.button:hover {
	background-color:#EDEDED;
	color: #000000;
	flex: 1;
}

.social{
    text-decoration: none;
    width: 100px;
    height: 100px;
    text-decoration: none;
    color: black;
    transition: all 0.2s ease-in-out;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0px;
}

.social:hover {
    color:#B3B3B3;
}

.button.active {
    background-color: #EDEDED; /* Your hover background color */
    color: #000000;           /* Your hover text color */
}

/* ... other styles ... */

#bio {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0; 
    overflow: hidden;
    padding: 10px;
    text-align: left;
    margin-bottom: -12px; 
  }
  
  #bio.active {
    max-height: 500px; /* Or a suitable max-height */
    opacity: 1;
    padding-left: 50px;
    padding-right: 50px;
  }