.spin {
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

@keyframes sizeUp
{
    0% {
        transform: scale(1); 
    }
    100% {
        transform: scale(1.01);
    }
}

.titleDiv
{
    font-family:'Comfortaa','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f073ca;
    color: #50005c; 
    text-align: center;
    display:flex;
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    margin: 0px; 
    padding: 15px; 
    font-weight: bold; 
    box-shadow: #b793be 0px 15px 10px;
    position: relative; 
    border-bottom: 1px #50005c solid; 
}

.titleDiv h2
{
    margin: 5px; 
}

.kiki
{
    transition: transform 0.5s;
}

.kiki:hover
{
    transform: scale(1.03) rotate(0.015turn); 

}

.stars
{
    display: flex;
    flex-direction: row; 
    margin: 0px;
    padding: 0px;
    height: 30px; 
    width: 100%; 
}

.line
{
    height: 100%;
    border-bottom: 3px solid #50005c;
    width: 100% !important; 
}

.intro-container
{
    margin: 0px; 
    background-color: #eabbf2;
    padding-top: 20px; 
    padding-bottom: 10px; 
    border-bottom: 1px #50005c solid; 
}

.intro
{
    display: flex;
    flex-direction: row;   
    font-family:'Comfortaa','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px; 
    align-items:center;
    color: #50005c; 
}

.intro img
{
    height: 11vw;
    width: 11vw;
    margin-right: 30px;  
    border: 1px #50005c solid; 
}

.intro-section h1
{
    font-size: max(40px, 3.5vw);
    margin: 0px; 
}

.intro-section p
{
    font-size: max(20px, 1.2vw);
    margin: 0px; 
}

.intro-section
{
    display:flex;
    flex-direction: column;
}

.container
{
    background-color: #eabbf2;
    font-family:'Comfortaa','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-bottom: 1px #50005c solid; 
    color: #50005c;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
}

.container h2
{
    font-size: max(28px, 2.8vw);
    margin: 0px 0px 10px 0px; 
}

.videos-row
{
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center; 
    width: 90%;  
}

.base-row-item
{
    background: #fdebff;
    border: 1px #50005c solid; 
    padding: 5px;
    margin: 0.5%;  
    display: flex;
    flex-direction: column;
    box-shadow: #b793be 0px 10px 10px;
}

.video {  
  width: 30%;
  height: 450px; 
}

.image {
  width: 45%; 
  height: auto; 
  padding: 15px !important; 
}

.image img {
    height: 450px;
    object-fit: cover; 
}

.images-row-single
{
    display: none; 
}

.bird-video
{
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url(images/bird.png);
}

.video-buttons
{
    display: none;
    flex-direction: row;
    width: 80%; 
    align-items: stretch; 
    justify-content: center; 
}

.video-buttons button
{
    width: 40%;
    height: 50px; 
    margin: 5px;  
    background-color: #c571c9;
    font-family: 'Comfortaa','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    cursor: pointer; 
}

.video-buttons button:hover
{
    background-color: #ab62af;
}

html 
{
    background-color: #fce8ff; 
}

body
{
    margin: 0px; 
}

@media (max-width: 1000px)
{
    .intro img
    {
        display: none; 
    }

    .intro h1
    {
        text-align: center;
        margin-bottom: 5px; 
    }

    .intro p
    {
        text-align: center; 
    }

    .video {
        width: 95%; 
    }

    .video-buttons
    {
        display: flex; 
        margin-top: 5px; 
    }

    .image 
    {
        width: 90%; 
        height: auto; 
        padding: 15px !important; 
    }

    .images-row
    {
        display: none; 
    }

    .images-row-single
    {
        display: flex;
    }
}