div{
  text-align: center;
  width: 35%;
  float: right;
  padding-right: 5%;
}
h1{
  font-family: 'IM Fell English', serif;
  font-size: 3em;
}
p{
  font-family: 'La Belle Aurore', cursive;
  font-size: 2.5em;
}
#complementArea {
  height: 30px;
}
.photo{
  background-size: cover;
  width:55%;
  height: auto;
  float: left;
}
.ribbon {
 font-size: 16px !important;
 /* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */

 width: 50%;
 font-family:'IM Fell English', serif; 
 font-size: 20px;
 position: relative;
 background: #efe5d5;
 color: #000000;
 text-align: center;
 padding: 1em 2em; /* Adjust to suit */
 margin: 2em auto 3em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */
}
.ribbon:before, .ribbon:after {
 content: "";
 position: absolute;
 display: block;
 bottom: -1em;
 border: 1.5em solid #cfb283;
 z-index: -1;
}
.ribbon:before {
 left: -2em;
 border-right-width: 1.5em;
 border-left-color: transparent;
}
.ribbon:after {
 right: -2em;
 border-left-width: 1.5em;
 border-right-color: transparent;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
 content: "";
 position: absolute;
 display: block;
 border-style: solid;
 border-color: #b68c46 transparent transparent transparent;
 bottom: -1em;
}
.ribbon .ribbon-content:before {
 left: 0;
 border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
 right: 0;
 border-width: 1em 1em 0 0;
}
/*____________________________________________________________
# Social links
____________________________________________________________*/
/*---- Social Sidebar --- */

.social-icons{
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: white;
}

.icon{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: coral;
  transition: width .5s ease;
  cursor: pointer;
}

.icon:first-child{
  border-top-right-radius: 5px;
}

.icon:last-child{
  border-bottom-right-radius: 5px;
}

.icon:hover{
  width: 60px;
}

.icon.fb{
  background-color: #orange;
}

.icon.tw{
  background-color: #000;
}

.icon.pt{
  background-color: #CD1C1F;
}

.icon.in{
  background-color: #0077B5;
}

.icon.gp{
  background-color: #DD4B39;
}
.social-icons a {
  text-decoration: none; /* Removes the underline on all anchor tags */
}

/* Styling the top bar */
/* Styling the top bar */
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed; /* Fix the top bar at the top of the page */
  top: 0; /* Align it to the top */
  left: 0;
  width: 100%; /* Ensure it spans the full width */
  z-index: 9999; /* High z-index to ensure it's on top of other content */
  padding: 1px 0; /* Adjust padding as needed */
}

/* Styling the labels (AiFlock and CA) */
.top-bar label {
  font-size: 36px;
  font-family: 'Press Start 2P', cursive;
  font-weight: bold;
  color: #fcb700;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
  margin: 10px 0;
  animation: fadeIn 2s ease-out;
}

/* Styling the input and button section */
.copy-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-left: 0px;
  animation: scaleIn 1.5s ease-out;
  padding: 1px;
  border-radius: 1px;
}

/* Scale-in animation for the copy section */
@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Styling the input field */
.copy-section input {
  font-size: 20px;
  font-family: 'Press Start 2P', cursive;
  padding: 12px 20px;
  margin-right: 15px;
  width: 250px;
  border-radius: 10px;
  outline: none;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Input hover effect */
.copy-section input:hover {
  background-color: #333;
  border-color: #fcb700;
}

/* Styling the copy button */
.copy-btn {
  cursor: pointer;
  padding: 12px 25px;
  background-color: #fcb700;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'Press Start 2P', cursive;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Copy button hover effect */
.copy-btn:hover {
  background-color: #ff0066;
  transform: translateY(-4px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.5);
}
