/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



button{
    pointer-events: all;
}
.cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    gap:10px;
}
h2{
    font-size: 30px;
}
h3{
    font-size: 20px;
}
img{
    width: 250px;
    height: auto;
}
#top{
    padding:20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(0, 0, 0);
}
h1{
    text-align: center;
    font-size: 30px;
    padding:10px;
}
button:hover{
    cursor: pointer;
}



.loader{
    transform: rotatez(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width:48px;
    height:48px;
    color:#fff;
}
.loader:before,.loader:after{
    content: '';
    display: block;
    position: absolute;
    top:0;
    left:0;
    width:inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation:1s spin linear infinite;
}
.loader:after{
    color: #ff3d00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}
@keyframes rotate{
    0%{
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes rotateccw{
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
@keyframes spin{
    0%,
    100%{
        box-shadow: .2em 0px 0 0px currentColor;
    }
    12%{
        box-shadow: .2em .2em 0 0 currentColor;
    }
    25%{
        box-shadow: 0 .2em 0 0px currentColor;
    }
    37%{
        box-shadow: -.2em .2em 0 0 currentColor;
    }
    50%{
        box-shadow: -.2em 0 0 0 currentColor;
    }
    62%{
        box-shadow: -.2em -.2em 0 0 currentColor;
    }
    75%{
        box-shadow: 0px -.2em 0 0 currentColor;
    }
    87%{
        box-shadow: .2em -.2em 0 0 currentColor;
    }
}