*
{
    font-family: "nunito", sans-serif;
    font-weight: 300;
    /* outline: 1px solid black; */
}

body 
{
    display: flexbox;
}

.block
{
    background-color: rgb(206, 219, 229);
    width: 380px;
    height: 480px;
    border-radius: 30px;
    padding: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 3px 4px gray;
}

.block__paragraph
{
    width: 94%;
    text-align: center;
    font-size: 80%;
    padding: 0 10px;
    opacity: 0.6;
}


.block__img
{
    width: 80%;
    height: 56%;
    border-radius: 15px;
    margin: 20px 0 0 0;
}

.nav
{
    width: 100%;
    height: 200px;
    padding-top:10px;
    display: flex;
    flex-direction: row;
}
.nav__link
{
    color: rgb(90, 90, 125);
    margin: 10px;
    background-color: whitesmoke;
    width: 44%;
    border-radius: 12px;  
    text-align: center;
    line-height: 35px; 
}

.nav__link:hover
{
    background-color:rgba(90, 90, 125, 0.411);
    color: whitesmoke;
}

.nav__link--right
{
    text-decoration: dashed;
}