*{
    margin: 0;
    padding: 0;
}
body{
    background-color: rgb(191, 225, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container/*direção do container*/{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 200px;
    height: 43%;
    padding: 15px;
    padding-top: 10px;
}
.container /*estilo do container*/{
    border: 4px solid rgb(0, 29, 90);
    border-radius: 7px;
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 5px 10px rgb(42, 42, 255);

}
.container img{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.container h1{
    display: flex;
    font-weight: bold;
    padding-top: 10px;
    font-size: 25px;
    font-family: Trebuchet MS, sans-serif;
}
.container h3{
    display: flex;
    font-weight: 700;
    padding-top: 10px;
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}