body {
    background-color: whitesmoke;
}

#yeet {
    background-color: lightskyblue;
    padding: 25px;
    text-align: center;
    margin: auto 10% auto 10%;
    border-radius: 10px 10px 0 0;
}

#link{
    text-align: right;
}

.main{
    background-color: whitesmoke;
    border: solid lightskyblue 3px;
    margin: auto 10%  auto 10%;
    padding: 25px;
    border-radius: 0 0 10px 10px;
}

h1 {
 color: white;
}


/*================
    meow.html
================*/

.meow{
    background-color: whitesmoke;
    border: solid lightskyblue 3px;
    margin: auto 10%  auto 10%;
    padding: 25px;
    display: block;
	text-align: center;
    border-radius: 0 0 10px 10px;
}

/*================
    desert.html
================*/

img#desert {
    width: 320px;
	height: 160px;
	transition: width 1s, height 1s;
}

img#desert:hover{
    width: 100%;
	height: 100%;
}

.desert{
    display: block;
	text-align: center;
}

#desertback{
    display: block;
	text-align: center;
    position:absolute;
    width:99%;
    bottom:0px;
}

/*================
    winmine.html
================*/

a#winmine {
	transition: font-size 1s;
}

a#winmine:hover{
    font-size: 200px;
}

.winmine{
    display: block;
	text-align: center;
}

p#intense{
    color: red;
    font-size: 300%;
}

/*================
    index.html
================*/

a#links{
    color: white;
}
a#links:hover{
    color:aqua;
}

p#links{
    color: white;
}

h3#links{
    color: white;
}

body.link {
    background-color: black;
}

a.dang{
    color: white;
}

a.dang:hover{
    color:red;
}

p#hood{
    text-align: justify;
}

/*================
    error.html
================*/

#erroryeet {
    background-color: black;
    padding: 25px;
    text-align: center;
    margin: auto 10% auto 10%;
    border-radius: 10px 10px 0 0;
}

h1#error{
    color: white;
}

.error{
    background-color: whitesmoke;
    border: solid black 3px;
    margin: auto 10%  auto 10%;
    padding: 25px;
    display: block;
	text-align: center;
    border-radius: 0 0 10px 10px;    
}

/*===================
    buttonnyan.html
===================*/
/*
    Buttons
*/
#button1 {
    background-color: darkblue;
    color: white;
    border-radius: 5px;
    border: solid rgb(119, 145, 181) 10px;
    padding: 5px;
    display:inline-block;
    margin: 20px;
    cursor: not-allowed;
    transition: 1s;
}

#button1:hover{
    transform: scale(0);
}

#button2 {
    background-color:  wheat;
    border-radius: 20px;
    display: inline-block;
    padding: 5px;
    border: double rgb(99, 199, 126) 5px;
    margin: 20px;
    transition: 5s;
}

#button2:hover{
    background-color: brown;
    transform: skewX(180deg)
}

#button3 {
    background-color: chartreuse;
    display: inline-block;
    padding: 5px;
    border: solid rgb(166, 127, 201) 5px;
    margin: 20px;
    transition: 5s;
}

#button3:hover{
    transform: rotate(55555555deg) scale(3);
    color: aquamarine
}

/*
    IMGs
*/

img#bild1 {
    transition: 1s;
}

img#bild1:hover {
    transform: skewX(360deg) scale(-1);
}


/*
    head and foot
*/
#head{
	background-color: rgb(78, 207, 166);
	text-align: center;
	color: white;
	padding: 15px;
	text-decoration: underline;
}


/*
    Design Stuff
*/
body {
    background-color: rgb(4, 50, 98);
}

.yeet {
    width: :100%;
    display: block;
	text-align: center;
}

img#kangaroo {
    transition: 9s;
    
}

img#kangaroo:hover {
    transform: rotate(20deg);
    transform: skewX(200deg);
}
/*===================
    popup.html
===================*/
/*
    general
*/
body{
    background-color: lightskyblue;
}
#pop-up{
    position: relative;
    width: 30%;
    margin: 0 auto;
    text-align: center;
    top: 200px;
    transform-origin: top left;
    animation: pop 1.5s ease-in, pop2 5s 1.5s ease-in-out;
    animation-fill-mode: forwards;
}
h1#popup{
    color: black;
}
h1:hover{
    font-size: 50px;
    animation: text;
}
@keyframes text{
    0%{transform: scale(50px;)}
    100%{transform: scale(100px;)}
}
.popup {
    position: absolute;
}
/*
    container
*/
.container{
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    border: solid grey 1px;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 2px 2px grey;
}
/*
    cross
*/
.cross{
    position: absolute;
    border-radius: 1px;
    background-color: red;
    padding: 0px 8px 0px 8px;
    color: white;
    text-shadow: 0.5px 0.5px black;
    border: solid black 0.5px;
    font-size: 8px;
    box-sizing: border-box;
    box-shadow: 1px 1px 2px grey;
}
.cross:hover{
    cursor: pointer;
}
.cross:active{
    cursor: pointer;
    box-shadow: 0px 0px 0px grey;
}
/*
    button+input
*/
input{
    margin: Opx;
}
button{
    margin: 0px;
    box-shadow: 2px 2px 2px grey;
}
button:hover{
    cursor: pointer;
}
button:active{
    box-shadow: 0 0 0 white;
}
/*
    physikalisch falsch
*/
@keyframes pop{
    0%{top: -200px;}
    30%{top: -200px;}
    70%{top: 210px;}
    80%{top: 190px;}
    90%{top: 200px;}
    100%{top: 200px;}
}
@keyframes pop2{
    20%{top: 200px; transform: rotate(80deg);}
    40%{top: 200px; transform: rotate(45deg);}
    60%{top: 200px; transform: rotate(75deg);}
    80%{top: 200px; transform: rotate(65deg);}
    100%{top: 200px; transform: rotate(68deg);}    
}