html,
body {
	margin: 0;
	padding: 0;
	background: #0e120f;
	color: white;
	font-family: sans-serif;
}

#myearth {
    height: 70vh;
    max-height: 100vw;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

#myearth.earth-ready {
	opacity: 1;
}

#myearth::before {
	content: none;
}


/* background glow */

#glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 100vh;
    height: 100vh;
    max-height: 100vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgb(102 100 98 / 45%) 25%,rgb(0 0 0 / 58%) 33%,rgb(0 0 0 / 50%) 36%,rgb(185 158 28 / 0%) 43%);
    z-index: 200;
    pointer-events: none;
}

body {
    background: #ffffff;
}

.contain{
		display: flex;
		flex-direction: row;
		align-content: center;
		justify-content: center;
		align-items: center;
	}
	.container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.useraction {
		display: flex;
		padding-left: 39px;
	}
.left {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding-left: 110px;
}
  /* CSS */
  .button-33 {
		background-color: #f3ca86;
        background-color: #ffd98c;
        border-width: 0;
        box-shadow: rgb(45 35 66 / 40%) 2px 2px 4px, rgb(45 35 66 / 30%) 0 7px 13px -3px, #b87913 0 -3px 0 inset;
		border-radius: 10px;
		color: black;
		display: inline-block;
		font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
		padding: 5px 20px;
		text-align: center;
		font-weight: 600;
		text-decoration: none;
		transition: all 250ms;
		border: 0;
		font-size: 16px;
		user-select: none;
		-webkit-user-select: none;
		touch-action: manipulation;
	}
  
  .button-33:hover {
	background-color: #b87913;
	color: white;
    box-shadow: rgb(45 35 66 / 40%) 2px 2px 4px, rgb(45 35 66 / 30%) 0 7px 13px -3px, #f1d892 0 -3px 0 inset;
  }

  a.button-33 {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    color: initial;
    margin-right: 10px;
}
.header {
    display: flex;
    justify-content: center;
    background: #403844;
}

.fadein {
    /* margin: auto; */
    position: relative;
    height: 319px;
	margin-bottom: 35px;

}
.fadein img {
    position: absolute;
    /* left: -65px; */
    top: 0px;
    -webkit-animation-name: fade;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 6s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-duration: 6s;
}

@-webkit-keyframes fade {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes fade {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}


#f2 {
    -webkit-animation-delay: -4s;

}
#f3 {
    -webkit-animation-delay: -2s;

}
.imagebg{
    background-image: url("../photos/footer.jpeg");
        /* background: url("images/footer.png")  repeat-x scroll top transparent; */
        background-size: 100% 551px;
        height: 136px;
        width: 100%;
        background-repeat: repeat;
}