*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    height:100%;
    margin: 0px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0px;
    background-color: gainsboro;
}

.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, 	deepskyblue 50%,  	gainsboro 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}

.container {
    animation: fadeInDown 0.8s ease-in-out;
    background-color: white;
    padding: 40px;
    box-shadow: 5px 3px 5px 0px grey;
    border-radius: 20px;
    width: 300px;
    height: 300px;
    text-align: center;
    transition: all 1s ease-in-out;
    padding-top: 10px;
    padding-bottom: 100px;
}

p{
    color: grey;
    padding-top: 30px;
    font-family: 'Courier New', Courier, monospace;
}

h1 {
    padding-top: 45px;
    color: 	dodgerblue;
    justify-self: center;
    text-shadow: 5px 0px 4px  silver;
}

@keyframes slide {
    0% {
    transform:translateX(-25%);
}
    100% {
    transform:translateX(25%);
}
}

.button-continue{
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 20px 0 rgba(65, 132, 234, 0.75);
    width: 150px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    height: 40px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.button-continue:hover {
    background-position: 100% 0;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.button-continue:focus {
    outline: none;
}

/* Smooth opening animations */
@keyframes fadeInDown {
0% {
    opacity: 0;
    transform: translateY(-80px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

