/* *{
    outline: 1px solid white;
} */


@font-face{
    font-family: xband;
    src: url(fonts/XBAND\ ROUGH.TTF)
}

#logo{
    /* box-sizing: border-box; */
    margin: 0 auto;
    display: block;
    width: 200px;
    align-items: center;
    /* align-items: center; */
    /* height: auto; */
    opacity: 100%;
    animation-name: rotate, fadein, sizein;
    animation-delay: 500ms;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: rotate 1s;
    
}
#logo:hover{
    box-sizing: border-box;
    opacity: 100%;
}

h1{
    text-align: center;
    font-size: 44px;
    font-family:xband ;
    margin: 0;
    animation-name: rainbow;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    
}

@keyframes rotate {
    0% {rotate: 0deg;}
    100% {rotate: 360deg;}
}

@keyframes rainbow {
    0% {color: rgb(255, 0, 0);}
    25% {color: rgb(246, 255, 0);}
    50% {color: rgb(0, 255, 64);}
    75% {color: rgb(0, 89, 255);}
    100% {color: rgb(255, 0, 0);}
}

@keyframes fadein{
    from{opacity: 0%;}
    to{opacity: 100%;}
}

@keyframes sizein{
    from{width: 0;}
    to{width:200px;}
}

body{
    background: rgba(0, 0, 0, 0.8) url(images/sparkles.gif);
    background-blend-mode: darken;
    font-family: cursive;
}

#podtext{
    color: rgb(255, 255, 255);
    background-color: rgb(39, 39, 39);
    font-family: cursive;
    margin-left: 30%;
    margin-right: 30%;
    border-radius: 10px;
}

button{
    color: white; background-color: rgb(82, 82, 82);
    font-family: cursive;
    font-weight: 800;
    animation-name: fadein;
    animation-duration: 1s;
}

.container{
    background-color: rgba(153, 209, 115, 0.7);
    border: 0.2cm;
    border-color: rgb(0, 0, 0);
    border-style:solid;
    border-radius: 0.5cm;
    border-top: 5px;
    text-align: center;
    margin: 0 20%;
    animation-name: fadein;
    animation-duration: 1s;

}

.horses img{
    display: inline-block;
    border-top: 10px;
    animation-name: fadein;
    animation-duration: 1s;
    background-color: rgb(153, 209, 115);
    border: 1px;
    border-radius: 0px;
    border-style:solid;
    border-color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: auto;
    width: 40%;
    height:30vmax;
    object-fit:cover;
    /* display: block; */
    /* align-items: center; */
    transition: opacity 1s, width 0.5s, box-shadow 0.5s, border 0.5s;
    box-shadow:0 0 20px 0px ;
}

.horses img:hover{
    opacity:100%;
    transition-delay: 900ms;
    transition: opacity 0.5s, width 0.5s, height 0.5s, box-shadow 0.5s, border 0.5s;
    border: 2px;
    border-radius: 5px;
    border-style:solid;
    width:90%;
    box-shadow:0px 0px 20px;
    
}

p{
    margin: 0;
    font-family: cursive;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5) url(images/sparkles.gif);
    background-blend-mode: darken;
    border: 15px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-style:solid;
    border-color: rgb(74, 102, 56);
    font-size: 24px;
    color: white;
}

h3{
    color: white;
    font-weight: 100;
}


.bttn{
    margin-bottom: 10px;
    background-color: rgb(153, 209, 115);
    color: rgb(0, 0, 0);
    font-size: 40px;
    padding: 10px 20px;
}
