@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@400;700&display=swap');

body {
  font-family: 'Bellota', Arial, sans-serif;
    margin: 0px;
/*    background: white url('dawn.jpeg') top center / contain no-repeat; */
    position: relative;
}

.container {
  position: relative;
  max-width: 100%;
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.container img {
  display: block;
  width: 100%;
  height: auto;
}

.hoverable-svg {
  position: absolute;
  width: 100%;
  height: auto;
  pointer-events: none;
  top:0;
  left:0;
}

.hoverable-svg * {
  pointer-events: all;
}
.hoverable-svg path {
    stroke: none;
    stroke: black;
    fill: none;
}


.hoverable-svg:hover {
  /* Add your hover effects here */
  cursor:pointer;
}

#tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid  #e6b06a;
  padding: 10px;
  z-index: 1;
  width: 400px;
  pointer-events:none;
}
#tooltip-image{ 
    float: left;
    margin-right: 20px;
    margin-bottom: 5px;    
}
#tooltip-name{
    font-size:1.1rem;
    font-weight: bold;
}
#tooltip-birth, #tooltip-category, #tooltip-country{
    font-weight: bold;
}
#tooltip-bio {
    margin-top: 12px;
    font-size: 0.9rem;
}

.header {
  display: flex;
  justify-content: center;
  text-align: left; 
}

.header-content {
  display: flex;
  flex-direction: column;
  max-width: fit-content;
}

.header h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  text-align:center;
  line-height: 40px;
/*  color: white; */
  margin: 30px 0px 5px;
}

.header h4 {
  text-align: right;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;    
   margin: 0 0 10px;
         color: #4d87ff;

}


h2{
    text-align:center;
}
.sharethis-inline-share-buttons{
    margin-bottom:30px;    
}
.regular-container{
    width:96%;
    max-width:1024px;
    margin: 0 auto;
}

.slogan{
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

#yow-table {
    width: 100%;
    border-collapse: collapse; 
    margin-bottom:60px;
}

#yow-table th, #yow-table td {
    padding: 10px; 
    border-right: 1px solid #FFE1A2;
    border-bottom: 1px solid #aed1ff;
}

#yow-table th:last-child, #yow-table td:last-child {
    border-right: none; 
}

#yow-table tr:last-child td {
//    border-bottom: none;
}

#yow-table .name {
    width: 15%;
}

#yow-table .birth {
    width: 10%;
}

#yow-table .category {
    width: 12%;
}

#yow-table .country {
    width: 13%;
}

#yow-table .bio {
    width: 50%;
}



#footer {
    color: white;
    padding: 20px;
    text-align: center;
    background-color: #4e000e;
}
#footer .contact {
    margin-bottom: 10px;
}
#footer .copyright{
    font-size:0.9em;
}

.button{
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1em;
}
.button-white{
    color:white;
  border: 2px solid white;
  background:transparent;
}
.button-white:hover{
    background-color: white;
    color:#4e000e;
}


#backToTop{
    display: flex;
    justify-content: center;
    align-items: center;

    background: #4e000eaa;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
        cursor: pointer;

    transition: opacity 0.5s; /* this will animate the change in opacity */
    opacity: 0; /* we set the initial opacity to 0 */
}

.arrow-icon {
    font-size: 20px;
}



/* CSS for Mobile and Tablet */
@media screen and (max-width: 800px) {
    .name, .birth, .category, .country {
        display: none;
    }
    .mobile-only .m-birth, 
    .mobile-only .m-category, 
    .mobile-only .m-country
    {
        font-size:0.8em;
    }
    .mobile-only, .bio {
        display: table-cell;
    }
    #yow-table .bio {
        width: 65%;
    }
    
}

/* CSS for Desktop */
@media screen and (min-width: 800px) {
    .mobile-only {
        display: none;
    }
    .name, .birth, .category, .country, .bio {
        display: table-cell;
    }
}
