@import url("https://use.typekit.net/cug6vpv.css");
@import url("https://use.typekit.net/cug6vpv.css");

body {
    margin-top: 5px;
    padding: 0;
}

main {
    display: grid;
    grid-template-areas: "game info";
    grid-gap: 5vw;
    grid-template-columns: 65% 1fr;
}

#screen {
    position: relative;
    margin-left: 25px;
    grid-area: game;
    width: 77vw;
    height: 43vw;
    border: 4px black solid;
    overflow: hidden;
}

#all_screens {
    width: 100%;
    height: 100%;
}

ul {
    width: 75vw;
    display: flex;
    justify-content: flex-start;
    list-style: none;
}

li {
    margin-right: 25px
}

a {
    text-decoration: none;
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: #00a9cc;
}

#star_one {
    position: absolute;
    background-image: url("svgs/star_points.svg");
    left: 15vw;
    top: 12vw;
    width: 1vw;
    height: 1vw;
    background-size: 100%;
    background-repeat: no-repeat;
}
#star_onea {
    position: absolute;
    background-image: url("svgs/star_points.svg");
    left: 55vw;
    top: 21vw;
    width: 1vw;
    height: 1vw;
    background-size: 100%;
    background-repeat: no-repeat;
}

@keyframes twinkle {

    0%,
    100% {
        transform: scale(1);
    }

    20% {
        transform: scale(2.8) rotate(349deg);
    }

    40% {
        transform: scale(3) rotate(360deg);
    }

    60% {
        transform: scale (2.8) rotate(349deg);
    }
}


.pulseTwo {
    animation: twinkletwo 3s -0.2s linear infinite;
}

@keyframes twinkletwo {

    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.2);
        filter: invert(55%) sepia(56%) saturate(253%) hue-rotate(233deg) brightness(85%) contrast(100%);
    }

    40% {
        transform: scale(1.4);
        filter: invert(74%) sepia(86%) saturate(332%) hue-rotate(18deg) brightness(91%) contrast(90%);
    }

    60% {
        transform: scale(1.5);
        filter: invert(95%) sepia(80%) saturate(875%) hue-rotate(341deg) brightness(90%) contrast(88%);
    }

    80% {
        transform: scale(1.2);
        filter: invert(74%) sepia(86%) saturate(332%) hue-rotate(18deg) brightness(91%) contrast(90%);
    }

    100% {
        transform: scale(1);
    }
}



/* WELCOME SCREEN */

#welcome_screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

#welcome_background {
    background-image: url("svgs/welcome_background.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 77vw;
    height: 43vw;
}


h1.title {
    position: absolute;
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 6.5vw;
    color: #B2CC56;
    font-style: italic;
    z-index: 9;
    text-align: center;
    top: 0vw;
    margin-top: 0vw;
    padding-top: 0vw;
}

.welcome_start {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 17vw;
    left: 44vw;
    z-index: 10;
    animation: bouncing 1s 1s ease-in infinite;
}

@keyframes bouncing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}


#welcome_start_text {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    cursor: pointer;

}

.welcome_howto {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 30vw;
    left: 44vw;
    z-index: 10;
    cursor: pointer;

}

#welcome_howto_text {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    cursor: pointer;
}

p.top_text {
    position: absolute;
    top: 4vw;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2vw;
    color: white;
    z-index: 11;
}

/* HOW TO */

#howto_screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

#howto_background {
    background-image: url("svgs/howto_background.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 77vw;
    height: 43vw;
}


.howto_instructions {
    position: absolute;
    background-image: linear-gradient(#999999, #464545);
    box-shadow: 1px 1px 2px black, 0 0 25px rgb(255, 255, 255), 0 0 5px darkblue;
    top: 9vw;
    left: 3vw;
    width: 66vw;
    padding: 20px;
}

h2 {
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 2vw;
    color: #B2CC56;
    font-style: italic;
    margin: 0;
}

h3 {
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4vw;
    color: white;
    margin: 5;
}

img {
    width: 3vw;
    height: 3vw;
}

.howto_startgame {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 15vw;
    left: 40vw;
    animation: bouncing 1s 5s ease-in infinite;
}

@keyframes bouncing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

#howto_startgame_text {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    cursor: pointer;
}

.howto_box1 {
    position: absolute;
    top: -20vw;
    left: 15vw;
    z-index: 1;
}

#howto_shootingstar {
    width: 100%;
    height: 100%;
    width: 2vw;
    height: 10vw;
    background-image: url("svgs/shootingstar.svg");
    background-size: 100%;
    transform: rotate(-45deg);
}

#howto_fall1 {
    animation: howto_fall1 4s 5s linear infinite;
    transform-origin: 50% 100%;
}

@keyframes howto_fall1 {
    to {
        transform: translateX(90vw) translateY(70vw);
    }
}

.howto_box2 {
    position: absolute;
    top: -20vw;
    left: 5vw;
    z-index: 1;

}

#howto_star {
    width: 100%;
    height: 100%;
    width: 5vw;
    height: 6vw;
    background-image: url("svgs/star.svg");
    background-size: 100%;
    transform: rotate(-30deg);
}

#howto_fall2 {
    animation: howto_fall2 6s 3s linear infinite;
}

@keyframes howto_fall2 {
    to {
        transform: translateX(30vw) translateY(70vw);
    }
}

.howto_box3 {
    position: absolute;
    top: -20vw;
    left: 6vw;
    z-index: 1;

}

#howto_moonrock {
    width: 100%;
    height: 100%;
    width: 3.8vw;
    height: 7vw;
    background-image: url("svgs/moonrock.svg");
    background-size: 100%;
}

#howto_fall3 {
    animation: howto_fall3 8s 2s ease-in infinite;
}

@keyframes howto_fall3 {
    to {
        transform: translateY(70vw);
    }
}

.howto_box4 {
    position: absolute;
    top: -20vw;
    left: 44vw;
    z-index: 1;

}

#howto_junk {
    width: 100%;
    height: 100%;
    width: 3.8vw;
    height: 7vw;
    background-image: url("svgs/spacejunk.svg");
    background-size: 100%;
}

#howto_fall4 {
    animation: howto_fall4 5s 5s ease-out infinite;
}

@keyframes howto_fall4 {
    to {
        transform: translateY(70vw);
    }
}

/* GAME */
#game_screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

#game_background {
    background-image: url("svgs/game_background.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 77vw;
    height: 43vw;
}

#settings {
    position: absolute;
    display: flex;
    justify-content: space-around;
    left: -2vw;
    width: 8vw;
    height: 1vw;
    top: 0vw;
    text-align: center;
    font-size: 1.5vw;
    padding: 0vw;
    z-index: 1;
}


#play_bg {
    position: absolute;
    background-image: url("svgs/play.svg");
    top: 1vw;
    width: 2vw;
    height: 2.2vw;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 0;
    filter: drop-shadow(3px 3px 3px #CCCC58);

}

#pause_bg {
    position: absolute;
    background-image: url("svgs/pause.svg");
    top: 1vw;
    width: 2vw;
    height: 2.2vw;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 0;
    filter: drop-shadow(3px 3px 3px#CCCC58);
}

#soundon {
    position: absolute;
    background-image: url("svgs/soundon.svg");
    top: 4vw;
    width: 3.8vw;
    height: 4.4vw;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(3px 3px 3px #CCCC58);

}

#soundoff {
    position: absolute;
    background-image: url("svgs/soundoff.svg");
    top: 4vw;
    width: 3.8vw;
    height: 4.4vw;
    cursor: pointer;
    background-size: 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(3px 3px 3px #CCCC58);


}

#game_elements {
    width: 100%;
    height: 100%;

}


/* ALL ELEMENTS, their animations and positions */
#big_earth {
    position: absolute;
    background-image: url("svgs/bigearth.svg");
    bottom: 0vw;
    left: 1vw;
    width: 15vw;
    height: 15vw;
    background-size: 100%;
    background-repeat: no-repeat;
}

#big_moon {
    position: absolute;
    background-image: url("svgs/bigmoon.svg");
    top: 0vw;
    right: 1vw;
    width: 25vw;
    height: 25vw;
    background-size: 100%;
    background-repeat: no-repeat;
}

#box_star1 {
    position: absolute;

}

#box_star2 {
    position: absolute;

}

#box_star3 {
    position: absolute;
}

#box_shooting {
    position: absolute;
}

#box_rock1 {
    position: absolute;
}

#box_rock2 {
    position: absolute;
}

#box_junk {
    position: absolute;
}

#element_star1 {
    width: 5.2vw;
    height: 6.4vw;
    background-image: url("svgs/star.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_star2 {
    width: 5.2vw;
    height: 6.4vw;
    background-image: url("svgs/star.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_star3 {
    width: 5.5vw;
    height: 6.8vw;
    background-image: url("svgs/star.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_shooting {
    width: 2vw;
    height: 10vw;
    background-image: url("svgs/shootingstar.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_rock1 {
    width: 4vw;
    height: 7.3vw;
    background-image: url("svgs/moonrock.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_rock2 {
    width: 4.2vw;
    height: 7.8vw;
    background-image: url("svgs/moonrock.svg");
    background-size: 100%;
    cursor: pointer;
}

#element_junk {
    width: 3vw;
    height: 5.6vw;
    background-image: url("svgs/spacejunk.svg");
    background-size: 100%;
    cursor: pointer;
}

.position1 {
    top: -20vw;
    left: 5vw;
}

.position2 {
    top: -10vw;
    left: 15vw;
}

.position3 {
    top: -10vw;
    left: 25vw;
}

.position4 {
    top: -10vw;
    left: 35vw;
}

.position5 {
    top: -10vw;
    left: 45vw;
}

.position6 {
    top: -10vw;
    left: 30vw;
}

.position7 {
    top: -10vw;
    left: 20vw;
}

.position8 {
    top: -10vw;
    left: 50vw;
}

.fallDown1 {
    animation: fallDown1 10s ease-in infinite;
}

@keyframes fallDown1 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }

}

.fallDown2 {
    animation: fallDown2 5s ease-in infinite;
}


@keyframes fallDown2 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }
}

.fallDown3 {
    animation: fallDown3 5s ease-in infinite;
}


@keyframes fallDown3 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }

}

.fallDown4 {
    animation: fallDown4 8s ease-in infinite;
}


@keyframes fallDown4 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }
}


.fallDown5 {
    animation: fallDown5 7s 3s ease-out infinite;
}


@keyframes fallDown5 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }

}

.fallDown6 {
    animation: fallDown6 10s 1s linear infinite;
}


@keyframes fallDown6 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }
}

.fallDown7 {
    animation: fallDown7 9s 1s linear infinite;
}


@keyframes fallDown7 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.3) translateY(70vw);
    }
}

.fallDown8 {
    animation: fallDown8 9s 1s ease-in-out infinite;
}


@keyframes fallDown8 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }

    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }
}

.fallDown9 {
    animation: fallDown9 6.5s 1s linear infinite;
}


@keyframes fallDown9 {
    0% {
        transform: scale(1, 1) translateY(0vw);
    }


    100% {
        transform: scale(0.7, 1.5) translateY(70vw);
    }
}

.fallFast1 {
    animation: fallFast1 3s 1s linear infinite;
}

@keyframes fallFast1 {
    to {
        transform: translateY(70vw);
    }
}
.fallFast2 {
    animation: fallFast2 3s 1s linear infinite;
}

@keyframes fallFast2 {
    to {
        transform: translateY(70vw);
    }
}


.fallFast3 {
    animation: fallFast3 4s 1s linear infinite;
}

@keyframes fallFast3 {
    to {
        transform: translateY(70vw);
    }
}

.fallFast4 {
    animation: fallFast4 3.2s 1s linear infinite;
}

@keyframes fallFast4 {
    to {
        transform: translateY(70vw);
    }
}

.fallFast5 {
    animation: fallFast5 4.5s 1s linear infinite;
}

@keyframes fallFast5 {
    to {
        transform: translateY(70vw);
    }
}

.fallFast6 {
    animation: fallFast6 4s 2s linear infinite;
}

@keyframes fallFast6 {
    to {
        transform: translateY(70vw);
    }
}

.shrinkMe {
    animation: shrinkMe 0.5s linear;
}

@keyframes shrinkMe {
    to {
        transform: scale(0);
    }
}

.explodeMe {
    animation: explodeMe 0.5s ease-out
}

@keyframes explodeMe {
    to {
        transform: scale(3);
    }
}

#game_foreground {
    width: 100%;
    height: 100%;
}

#fuel_board {
    position: absolute;
    display: flex;
    justify-content: space-around;
    top: 0.2vw;
    right: 5vw;
    padding: .2vw;

}

#star_fuel {
    left: -1vw;
    width: 6vw;
    height: 6vw;
    background-image: url("svgs/star_points.svg");
    background-repeat: no-repeat;
    position: absolute;
    background-size: 100%;
}

#star_fuel2 {
    left: -1vw;
    width: 6vw;
    height: 6vw;
    background-image: url("svgs/star_points.svg");
    background-repeat: no-repeat;
    position: absolute;
    background-size: 100%;
}

#star_points {
    background-image: url("svgs/star_points.svg");
    position: absolute;
    top: 1.9vw;
    left: 2.2vw;
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 2vw;
    color: #A36FCC;
    align-items: center;
    margin: none;

}

.position_fuel {
    left: 2vw;
    top: 0.6vw
}

#life_board {
    position: absolute;
    display: flex;
    justify-content: space-around;
    right: 7vw;
    width: 12vw;
    height: 1vw;
    top: 2vw;
    padding: 0vw;
}

#life1,
#life2,
#life3 {
    width: 5.3vw;
    height: 4.7vw;
    background-repeat: no-repeat;
    background-size: 100%;

}

.no_heart {
    background-image: url("svgs/nolife.svg");
    width: 5.3vw;
    height: 4.7vw;
    background-repeat: no-repeat;
    background-size: 100%;
    filter: drop-shadow(1px 1px 1px #A36FCC);
}


.full_heart {
    background-image: url("svgs/life.svg");
    width: 5.3vw;
    height: 4.7vw;
    background-repeat: no-repeat;
    background-size: 100%;
    filter: drop-shadow(1px 1px 1px #A36FCC);
}

@keyframes fuel_rise {
    0% {
        height: 0%;
    }

    25% {
        height: 20%
    }

    50% {
        height: 55%;
    }

    75% {
        height: 80%
    }

    100% {
        height: 100%;
    }
}

#hourglass {
    width: 3.5vw;
    height: 10vw;
    top: 37vw;
    right: 0.8vw;
    background-image: url("svgs/timer.svg");
    background-repeat: no-repeat;
    position: absolute;
    background-size: 100%;
    filter: drop-shadow(1px 1px 1px #66ABCC);

}

#sand {
    background-image: url("svgs/sand.svg");
    background-repeat: no-repeat;
    position: relative;
    background-size: 100%;
    transform-origin: 50% 100%;
}

.sandFall {
    animation: sandFall 30s 1s linear;
    animation-iteration-count: 1;
    animation-direction: reverse;
}

@keyframes sandFall {
    0% {
        height: 60%;
    }

    25% {
        height: 40%
    }

    50% {
        height: 30%;
    }

    75% {
        height: 20%
    }

    100% {
        height: 0%;
    }
}


/* FAIL SCREEN */
#fail_screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

#fail_background {
    background-image: url(svgs/fail_background.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 77vw;
    height: 43vw;
}

.fail_game {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    /* z-index: 10; */
    background-repeat: no-repeat;
    position: absolute;
    top: 22vw;
    left: 42vw;
    animation: bouncing 1s 1s ease-in infinite;
}

@keyframes bouncing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

#fail_game_text {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.tryagain {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    cursor: pointer;
}

/* SUCCESS */

#success_screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

#success_background {
    background-image: url("svgs/success_background.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 77vw;
    height: 43vw;
    top: 0vw;
}

.success_game {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 22vw;
    left: 45vw;
    z-index: 10;
    animation: bouncing 1s 1s ease-in infinite;
}

@keyframes bouncing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

p.top_text2 {
    position: absolute;
    top: 6.5vw;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    left: 27vw;
    font-size: 2vw;
    color: white;
    z-index: 11;
}


#success_game_text {
    color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    cursor: pointer;
}

.success_howto {
    background-image: url("svgs/button.svg");
    width: 18vw;
    height: 8vw;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 30vw;
    left: 44vw;
    z-index: 10;

}



#success_starbox {
    position: absolute;
    left: -12vw;
    top: 8.5vw;
}

.shooting {
    animation: shooting 2s ease-in-out;
    transform-origin: center left;
    z-index: 11;
    animation-fill-mode: forwards;

}

@keyframes shooting {
    to {
        transform: translatex(78vw);
    }
}



#success_sstar {
    width: 2vw;
    height: 10vw;
    background-image: url("svgs/shootingstar.svg");
    background-size: 100%;
    transform: rotate(270deg) scale(2);
}


#success_cheer_text {
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 4.5vw;
    color: #B2CC56;
    font-style: italic;
}

.success_cheer {
    animation: stretchs 1.5s ease-in-out;
    position: absolute;
    top: 8vw;
    left: -20vw;
    transform-origin: center left;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

}
.tryagain
 { color: #D3D3D3;
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    text-align: center;
    cursor: pointer;
padding:2px;
}

@keyframes stretchs {
    100% {
        transform: translatex(60vw) scalex(1.8);
    }
}

.hidden {
    visibility: hidden;
}

aside {
    grid-area: info;
    margin-left: 10.5vw;
}

aside>p {
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5vw;
    text-align: left;
}

#aside_img {
    background-repeat: repeat-y;
    width: 20vw;
    /* position:absolute;
    top:auto; */


}

#aside_img2 {
    background-repeat: repeat-y;
    width: 20vw;
    position: relative;
}


li {
    margin-right: 25px;
}


/* .scaleDown:hover {
    transform: scale(0, 0) rotate(3600deg);
    transition: transform 7s linear;
} */

/* .skew:hover {
    transform: skewX(50deg);
    transform-origin: bottom left;
    transition: transform 3s ease-in;
} */


    @media only screen and (max-width: 1200px) {
        main {
            grid-template-areas: "game"
                "info";
        }
    
    }
/* ASSET LIST */
body.asset{background-color: #c5a3df;
    margin-top: 5px;
    padding: 0;
    align-content: center;}

main.asset{  display: block;
    background-color:white;
}
h1.asset {
    font-family: active, sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: black;
    font-style: italic;
    margin: 0;
    text-align: center;
}

h2.asset {
    font-family: active, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: black;
    text-align: center;
}

img.asset {
    width: 15vw;
    height: 15vw;
    filter: drop-shadow(0px 3px 3px rgb(21, 4, 99));


}

img.bg {
    width: 70vw;
    height: 40vw;
}

img.assetelton {
    width: 30vw;
    height: 30vw;
}

figure.asset {

    display: block;
    text-align: center;

}

figcaption.asset {
    /* display: block; */
    font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    color: black;
    text-align: center;
}

#p1 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    padding: 3vw;
    padding-left: 0vw;
}
    #p1a {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    
        padding: 3vw;
        padding-left: 0vw;
    
}
#p2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 3vw;
    padding-left: 0vw;

}

#p3 {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    padding: 3vw;
    padding-left: 0vw;

}

#p3a {
    display: flex;
    justify-content: space-around;

    flex-direction: row;
    padding: 3vw;
    padding-left: 0vw;
}

#p4 {
    display: flex;
    flex-direction: row;
    padding: 3vw;
    padding-left: 0vw;
    justify-content: space-between;


}
#p5 {
    display: flex;
    flex-direction: row;
    padding: 3vw;
    padding-left: 0vw;
    justify-content: space-evenly;
}

#p6 {
    display: flex;
    flex-direction: row;
    padding: 3vw;
    padding-left: 0vw;
    justify-content: space-evenly;}

    footer {position: relative;
        font-family: duper, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: black;
        height: 100px;
        width: 100vw;
        bottom: 0;
        padding: 24px;
        background-color:white;
    }

.paused {
    animation-play-state: paused;
}