@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
  

/* KEYFRAMES */

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 100vh;
    }
    100% {
        margin-top: -3000vh;
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 100vh;
    }
    100% {
        margin-top: -3000vh;
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 100vh;
    }
    100% {
        margin-top: -3000vh;
    }
}

@-webkit-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@-moz-keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@keyframes sideWays { 
    0% { 
        margin-left:0px;
    }
    100% { 
        margin-left:50px;
    }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@font-face {
    font-family: 'Montserrat';
    src: url("./fonts/Montserrat-Regular.ttf");
}


@font-face {
    font-family: 'Montserrat-b';
    src: url("./fonts/Montserrat-Black.ttf");
}

body{
    color:#eee;
    margin:0px;
    font-family: 'Montserrat';
}

  
#main{
    width:100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(-45deg, #ba61ee, #af21cc, #2f1aa5, #3470b4);
    background-size: 200vw 200vh;
    animation: gradient 12s ease infinite;
}

#inner{
    width:100%;
    height: 100%;
    margin-top: -100vh;
    transition: margin-top 2s;
}

.page{
    width:100%;
    height: 100%;
    position:relative;
    transition: opacity 1s ease;
}

.main-page-text{    
    position: absolute;
    font-family: 'Montserrat-b';
    font-size: 40vh;
    width: 80vw;
    height: 40vh;
    bottom: 40%;
    left: 50%;
    text-align: center;
    margin-left: -40vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


#main-page-text-2{ 
    position: absolute;
    font-size: 10vh;
    font-family: 'Montserrat-b';
    font-weight: 800;
    width: 100vw;
    top: 60%;
    left: 50%;
    text-align: center;
    margin-left: -50vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


#text_credits{
  font-size: 25px;
}

.page-buttons{
    font-size:20px;
    display: flex;
    flex-direction: row;
}

.page-buttons nav{
    background-color: #333;
    border-radius: 10px;
    padding:10px;
    margin:10px;
    width:160px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    transition: background-color .5s ;
}

.page-0-page{
    background-color: rgb(57 72 136 / 34%);
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top:1px;
    padding-bottom: 1px;
}

.page-buttons nav:hover{
    background-color: #000;
}

#main-page-b-load-button{
    display: none;
}

.loader {
    border: 4px solid #5d5877;
    border-top: 4px solid #d1d5d8; 
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}

.page-header{    
    position: absolute;
    display: flex;
    flex-direction: row;
    left: 10vw;
    width: 80vw;
    height: 15vh;
    top: 5vh;
    font-weight: 900;
    font-size: 5vh;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: 'Montserrat-b';
  }

.page-content{
    position: absolute;
    width:80vw;
    top: 20vh;
    height:60vh;
    left: 10vw;
    overflow-y: scroll;
    scrollbar-color:rgba(250, 250, 250, 0.7) rgba(250, 250, 250, 0)
}


.page-bottom{
    position: absolute;
    width:80vw;
    top: 85vh;
    height:10vh;
    left: 10vw;
    justify-content: center;
    z-index:10
}

/* scrollbar */

::-webkit-scrollbar {
    width: 20px;
  }

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffffab;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
    cursor:pointer;
  }

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.904);
}

a {
    color:rgb(255, 220, 107);
    text-decoration:none;
}

#page-info{
    height:100vh;
    width:100vw;

}

#infos{
    height:80vh;
    width:90vw;
    margin-left:5vw;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:2vw;
}

#infos-warning{
    font-size: 20px;
    text-align: center;
    font-weight: 800;
    background-color: rgb(20, 30, 121);
    padding:1vw;
    border-radius: 10px;
    width:78vw;
}

#page-0-content{
    overflow-y: scroll;
}

#select-faq{
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-0-content{
    max-width: 100%;
    overflow-wrap: break-word;
}

#select-faq nav{    
    margin: 1vw;
    padding: 1vw;
    width: 25vw;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    border-radius: 2vw;
    background-color: rgb(132 7 85 / 50%);
    cursor: pointer;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#select-faq nav:hover{
    background-color: rgb(132 7 85);   
}


/* Page 1 */

#page-1-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.page-1-content-item{
    font-size: 24px;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: opacity 2s ease;
    flex-wrap: wrap;
    justify-content: center;
}

.page-1-content-item .highlighted{
    color:rgb(235,229,28);
}

.page-1-content-item span{
    
    margin-left: 5px;
    margin-right: 5px;
}

.page-1-value{
    font-size: 35px;
    font-weight: 800;
    margin-left: 10px;
    margin-right: 10px;
}

/* page 4 */

#page-4-content{
    position: absolute;
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    grid-template-rows: 33% 33% 33%;
    overflow: visible;
}
  
.page-4-item{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:5px;
    border-radius: 10px;
    margin: 5px;
    margin-right:12px;
    box-shadow: 0px 0px rgb(51, 12, 77);
    transition: opacity 2s ease;
    overflow: hidden;
    justify-content: space-around;
}
  
.page-4-item-title{
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    height:35px;
}
  
.page-4-item-name{
    font-size: 18px;
    text-align: center;
    min-height:26px;
    max-height:26px;
    overflow: hidden;
}
  
.page-4-item-values{
    display: grid;
    grid-template-columns: 50% 50%;
}
  
.page-4-item-value-v{
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
  
.page-4-item-value-n{
    font-size: 10px;
    text-align: center;
}

.chart_element{
    width:95%
}

/* page 3 */

#page-3-content-items{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 70vw;
    height:90px;
}

.page-3-item{
    margin:10px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: space-around;
    font-size: 20px;
    height: 70px;
    width:30%;
    transition: opacity 2s ease;
}

.page-3-item-title, .page-3-item-value{
    text-align: center;
}

.page-3-item-title{
    font-weight: 800;
}

#page-3-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Word cloud */

.word_cloud_word{
    cursor: pointer;
}

/* page 5 */

#page-5-content{
    display: relative
}

.award_item{
    background: linear-gradient(156deg, rgba(128,7,7,1) 0%, rgba(175,38,22,1) 23%, rgba(213,120,8,1) 51%, rgba(217,200,10,1) 78%, rgba(166,227,35,1) 100%);
    padding:1vw;
    border-radius: 1vw;
    position: absolute;
    font-size: 2vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    opacity:0;
    transition: opacity 0.5s;
}

.award_name{
    font-size: 25px;
    font-weight: 800;
    margin-left:10px;
    margin-right: 10px;
    text-align: center;
}

.award_winner{
    padding:10px;
    border-radius: 5px;
    font-weight: 800;
    background: linear-gradient(39deg, rgba(52,11,11,1) 0%, rgba(147,25,10,1) 57%, rgba(108,97,11,1) 100%);
    transition: color 2s ease, width 0.5s ease, height 0.5s ease;
    cursor: pointer;
    width:20vw;
}
/* network */

#page-7-content{
    width:100vw;
    height: 100vh;
    top:0vh;
    left:0vw;
}

/* FLOATING DIVS */

#floating_divs{
    position:fixed;
    top:0;
    bottom:0;
    width:100vw;
    height:100vw;
    left:0vw;
    top:0vh
}

.floating_div{
    position:fixed;
    object-fit: cover;
}


.floating_text{
    position:fixed;
    background-color: rgb(163, 10, 43);
    color:#eee;
    padding:10px;
    border-radius: 5px;
}

/* page 6 */

  
  #page-6-content{
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
  }
  
  .page-6-item{
    height:50px;
    padding:6px;
    margin:10px;
    display:grid;
    grid-template-columns: 8vw 31vw 18vw 18vw;
    transition: opacity 1s ease;
  }
  
  .page-6-el{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .page-6-rank{
    font-size: 33px;
    font-weight: 900;
    display: flex;
    align-items: center
  }
  
  .page-6-name{
    font-size: 33px;  
    font-weight: 800;
    display: flex;
    align-items: center
  }
  
  .page-6-el-v{
    font-size:25px
  }
  
  .page-6-el-n{
    font-size: 15px;
  }

  /* page 10 */

  #page-10-infos-influenceur, #page-10-infos-animal{
    position: fixed;
    left: 86vw;
    width: 10vw;
    font-size: 1.4vh;
    background-color: rgba(8, 12, 29, 0.5);
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    display:none
  }

  #page-10-infos-influenceur{
      top:62vh
  }

  #page-10-infos-animal{
    top:38vh
  }

  #page-10-panel-influence:hover > #page-10-infos-influenceur{
    display: block;
  }

  #page-10-panel-totem:hover > #page-10-infos-animal{
    display: block;
  }
  #page-10-content{
      display: flex;
      flex-direction: row;
  }
  #page-10-panel{
      height:60vh;
      width:28vw;
      display: flex;
      flex-direction: column;
      transition: opacity 1s ease;
  }

  #page-10-panel-totem{
    height:35vh;
  }

  #page-10-panel-influence{
    height:24vh;
  }

  .page-10-panel-nav{
    width:28vw;
    font-size: 23px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .page-10-panel-nav p{
      text-align: center;
      margin:0px;
  }

  .page-10-panel-nav img{
      max-width: 25vw;
      max-height: 20vh;
  }

  .page-10-totem{
      font-size: 30px;
      font-weight: 800;
      text-align: center;
      transition: opacity 1s ease;
      color:rgb(235, 235, 60);
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: space-around;
  }
  
  #page-10-influenceur{
    padding:20px;
    border-radius:50% ;
    width: 10vh;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    transition: opacity 0.5s ease, background-color 10s ease;
}

  #page-10-bars{
      display:grid;
      height:60vh;
      width:50vw;
      grid-template-columns: 25% 25% 25% 25%;
      grid-template-rows: 15vh 45vh;
  }

  .page-10-text{
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      transition: opacity 1s ease;
  }

  .page-10-text nav{
      margin-left:5px;
      margin-right: 5px;
      font-weight: 800;
  }

  .page-10-adj{
      color:rgb(228, 228, 22);
      font-size: 20px;
      font-weight: 800;
      margin-left:5px;
      margin-right: 5px;
      text-align: center;
  }

  .page-10-pct{
      font-size:20px;
      margin-left:5px;
      font-weight: 800;
  }

  
  .page-10-pct-s{
    font-size:20px;
    margin-right:5px;
    font-weight: 800;
}
  .page-10-bar{
      width:9vw;
      transition: height 2s ease, background-color 2s ease
  }

  .page-10-barcontent{
      display: flex;
      justify-content: center;
      align-items:end;
  }

  /* page 11 */

  #page-11-content{
      display: flex;
      align-items: center;
      justify-content: center;
  }
  #page-11-inner{
    width: 55vh;
    display: grid;
    grid-template-columns: 33% 67%;
    background: linear-gradient(146deg, rgba(213,173,10,1) 0%, rgba(222,94,79,1) 57%, rgba(214,9,179,1) 100%);
    height: 55vh;
    position: relative;
    cursor: pointer;
  }

  #page-11-logo{
      position: relative;
  }
  .page-11-logo-text{
    position: absolute;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      font-size: 7vh;
      font-family:'Montserrat-b';
  }

  #page-11-logo-text-2{
    position: absolute;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2.3vh;
    margin-top: 7vh;
    color: #fff;
    margin-left: 12px;
    font-family:'Montserrat-b';
  }

#page-0-content h3{
    background-color: rgb(6, 8, 136);
    padding:5px;
    
}

.img_container{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page-0-content img{
    max-width:80%;
}

#summary-pseudo{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

#summary-name{
    font-size: 3.5vh;
    text-align: center;
    font-weight: 900;
}

#summary-qualities span{
    font-weight: 800;
}

#summary-qualities{
    font-size: 2.1vh;
    text-align: center;
}

#summary-animal, #summary-influenceur{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summary_small{
    text-align: center;
    font-size: 2vh;
}
#summary-animal img{
    width: 12vh;
    height: 12vh;
    object-fit:cover;
    border-radius: 50%;
}

#summary-influenceur-score{   
    width: 12vh;
    height: 12vh;
    background-color: #f7e00d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6vh;
    font-weight: 900;
    color: #dc466b;
}

.summary-small{
    font-size: 2vh;
    text-align: center;
}
#summary-personnality{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

#summary-bf-name{
    font-size: 2.5vh;
    font-weight: 900;
    text-align: right;
}
#summary-bf-text{
    font-size: 1.5vh;
    text-align: right;
}

#summary-trophy{
    font-size: 7vh;
    color: yellow;
}

#summary-bf{
    display: grid;
    grid-template-columns: 28vh 8vh;
    margin-top:1vh;
}

#summary-bf-res{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#summary-right{
    padding-bottom: 3vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#summary-emojis{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.summary-emoji{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.summary-emoji-e{
    font-size: 6vh;
}

.summary-emoji-v{
    font-size: 2vh;
    font-weight: 700;
}

.summary-left-text{
    font-size: 2vh;
    text-align: center;
}

.summary-left-number{
    font-size: 3.5vh;
    font-weight: 800;
    text-align: center;
}

#summary-numbers{
    margin-top: 11vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 43vh;
}

#summary-url{   
    position: absolute;
    right: 0.5vh;
    bottom: 0.5vh;
    font-size: 1.2vh;
}

#end-thanks{
    font-size: 18px;
    text-align: center;
}

#end-blabla{
    width: 25vw;
    padding: 10px;
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Fixed stuff */

#fixed_stuff_left{
    position:fixed;
    top:10px;
    left:10px;
    padding:5px;
}

#fixed_title{
    font-size: 20px;
    font-weight: 800;
}

#fixed_version{
    font-size: 12px;
}

#fixed_stuff_right{
    position:fixed;
    top:10px;
    right:10px;
    padding:5px;
    z-index: 10;
}

.nav_box{
    display:flex;
    align-items: center;
    justify-content: center;
}

#zoom_panel{
    position: absolute;
    left:15vw;
    bottom:20vh;
    display: flex;
    flex-direction: column;
}

#zoom_panel nav{
    background-color: rgb(46, 14, 83);
    padding:10px;
    font-size: 40px;
    width:40px;
    height:40px;
    border-radius: 50%;
    cursor: pointer;
    margin:5px;
    opacity:0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

#zoom_panel nav:hover{
    opacity: 1;
}

#copied_div{
    position: fixed;
    bottom:50px;
    right:-180px;
    background-color: rgba(41, 206, 19, 0.719);
    font-size: 15px;
    font-weight: 800;
    padding:10px;
    border-radius: 5px;
    width:150px;
    text-align: center;
    transition: right 1s;
}


#transisition_slide{
    position: fixed;
    z-index:0;
    width:100%;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#transition_slide_content{
    opacity:0;
    font-size: 34px;
    transition:opacity 2s;
    text-align: center;
    width:75%;
}


.download-button{    
    padding: 10px;
    background-color: rgb(219 63 116);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    text-align: center;
    border-radius: 15px;
    color: white;
    font-family: 'Montserrat-b';
    text-decoration: none;
    border: solid #dab4d5;
    cursor: pointer;
    margin-bottom: 6px;
}

.download-button:hover{
    background-color: rgb(165, 26, 56);
}

.download-button i {
    margin-right:10px;
}



.delete-button{    
    padding: 10px;
    background-color: rgb(221, 84, 30);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    text-align: center;
    border-radius: 15px;
    color: white;
    font-family: 'Montserrat-b';
    text-decoration: none;
    border: solid #dab4d5;
    cursor: pointer;
}

.delete-button:hover{
    background-color: rgb(175, 38, 13);
}

.delete-button i {
    margin-right:10px;
}

#end-support-text{
        font-size: 12px;
        text-align: center;
}

#button_skip{
    display: none;
    opacity:0;
    position: fixed;
    right: 45vw;
    bottom: 10vh;
    font-size: 30px;
    cursor: pointer;
    transition: opacity 1s ease;
    z-index:10
}

#demo{    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vw;
}

#demo_slides{
    height: 75vh;
    width: 100vw;
    overflow: visible;
}

#demo_slides_inner{
    height: 75vh;
    width: 500vw;
    transition: margin-left 1s ease;
    display: flex;
    flex-direction: row;
    margin-left: 0vw;
    position: relative;
}

.demo_page{
    height: 75vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.demo_panorama_item{
    height:20px;
    width:20px;
    border-radius: 50%;
    border: solid 2px white;
    margin:5px;
    background-color: rgba(256,256,256,0);
    transition: background-color .5s ease;
}

.demo_page_content{
    height: 60vh;
    width:80vw;
}

.demo_panorama nav{
    cursor: pointer;
}

.demo_panorama{
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
}

.demo_page_title{
    height: 15vh;
    font-family: 'Montserrat-b';
    font-size: 25px;
    max-width: 75vw;
    text-align: center;
    display: flex;
    align-items: center;
}

#demo_page_4_content{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#demo_personnality{    
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-right: 50px;
}

#demo_personnality_title{
    font-size: 20px;
    font-family: 'Montserrat-b';
}

.demo_personnality_item{
    width: 100%;
    height: 50px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

#demo_animals{
    display: grid;
    grid-template-columns: 15vh 15vh 15vh 15vh;
    align-items: center;
    justify-content: center;
}
.demo_animals_item{
    display: flex;
    align-items: center;
    justify-content: center;
}
#demo_animals img{
    height:12vh;
    width:12vh;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    transition: border-radius 0.4s ease;
}

#demo_animals img:hover{
    border-radius: 0%;

}

#demo_page_2_content{
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
}
#demo_page_5_content{
    display: flex;
    align-items: center;
    justify-content: center;
}

#demo_page_5_content img{
    max-width:80%;
    max-height: 80%;
}

@media screen and (max-width: 540px) {
    
    .main-page-text{
        font-size: 35vw;
        height:35vw;
        bottom:50%;
        transition: transform 2s;
    }
    
    #main-page-text-2{ 
        font-size:8vw;
        top: 50%;
        transition: transform 2s;
    }

    .page-buttons{
        font-size:3vw;
    }
    
    .page-buttons nav{
        background-color: #333;
        border-radius: 1vw;
        padding:1vw;
        margin:1vw;
        width:25vw;
    }
    #fixed_stuff_left{
        top:2px;
        left:2px;
        padding:1px;
    }
    #fixed_title{
        font-size: 10px;
    }
    
    #fixed_version{
        font-size: 7px;
    }

    #select-faq nav{
        font-size: 10px;
        height:75%;
    } 

    #page-10-influenceur{
        width: 8vw;
        height: 8vw;
    }
    .main-page-text{    
        font-size: 35vw;
        height: 35vw;
    }
    
    #main-page-text-2{ 
        font-size: 8vw;
    }

    
    #infos-warning{
        font-size: 1.5vw;
    }

    .demo_page_title{
        font-size: 2.3vh;
        max-width: 60vw;
    }

    #demo_page_4_content{
        flex-direction: column;
    }
    #demo_personnality{
        width: 20vw;
        display: grid;
        align-items: center;
        justify-content: space-around;
        margin-right: 0px;
        grid-template-columns: 45% 45%;
        width: 100%;
    }

    #demo_personnality_title{
        grid-column-start: 1;
        grid-column-end: 3;
        text-align: center;
    }

    .demo_personnality_item{
        width: 100%;
        height: 5vh;
        margin: 1vh;
    }

    #demo_animals{
        grid-template-columns: 15vw 15vw 15vw 15vw;
        grid-template-rows: 15vw 15vw 15vw 15vw;
    }

    #demo_animals img{
        height: 12vw;
        width: 12vw;
    }

    #main-page-buttons{
        flex-direction: column;
    }
}


