*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #0C4DDB;
}

.container .child{
    height: 400px;
    width: 900px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 1px 1px 16px 0px rgba(0, 0, 0, 0.325);
}


.container .child h1{
    position: relative;
    top: 50px;
    padding: 20px;
    font-size: 56px;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    
}


.container .child p{
    position: relative;
    top: 35px;
    padding: 20px;

    text-align: center;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.846);
}


.container .child a{
    font-size: 20px;
    /* padding: 20px; */
    text-align: center;
    position: relative;
    top: 55px;
    left: 377px;
}

.container .child a :hover{
    color: red;
}
