body{
    background:#02394A;
    /* background:linear-gradient(to top ,rgb(255, 255, 255),rgb(50,40,90)); */
}

.container{
    height:900px;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.child-container{
    background:#011F3D;
    height: 600px;
    border-radius: 10%;
    flex-basis:30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 5px 4px 13px -1px #042935;
-webkit-box-shadow: 5px 4px 13px -1px #042935;
-moz-box-shadow: 5px 4px 13px -1px #042935;
}

.gif{
    padding: 40px;
    width:300px;
    height:150px;
    padding-bottom:20px;
}

.text{
    text-align: center;
}


.text h1{
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 4rem;
    margin: 0px;
}
.text p{
    font-family: 'Pathway Gothic One', sans-serif;
    color: silver;
    font-size: 0.9rem;
    padding-bottom: 20px;
}

.links{
    padding-bottom: 30px;
    font-size: 2em;
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: space-around;
    align-items: center;
}

.links a{
    color: inherit;
    text-decoration: none;
}

.links a:hover{
    color: rgb(223, 202, 21);
}

footer{
    position: fixed;
    width: 100%;
    color: white;
    text-align: center;
}

@media screen and (max-width:700px){
    .child-container{
        flex-basis:80%;
    }
}