*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html{
    page-break-after: always;
    transition: all .2s;
}

body{
    background-color: #f8f3ec;
}

.container{
    width: 100%;
    height: 100vh;
}

.headr{
    width: 100%;
    height: 13%;
    background: #262e7a;
    display: flex;    
    margin-top: 15px;
    border-bottom: 2px solid #3d0af7;
    box-shadow: 0 1px 10px 5px #837f7f;
}
.headr_title{
    display: flex;
    align-items: center;
    justify-content: end;
    margin-left: 15px;
}

.headr_title h1{
    color: #f5f1f2;
}
.headr_title img{
    width: 70px;
    margin: 40px;
    box-shadow: 5px 5px 10px 0px;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
}

section{
    width: 100%;
    height: 70%;
}
.card_items{
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
margin-top: 150px;
}

a{
    text-decoration: none;
    color: #1a1919;
}
 span{
    color: #e4b10b;
 }
.box {
    width: 250px;
    height: 400px;
    background-color: aliceblue;
    margin-left: 15px;
    border-radius: 5px 5px 0 0;
    transition: all .5s;
    box-shadow: #3f3f3e 10px 10px 15px -10px, #393938 -10px -10px 15px -15px;
}
.box:hover {
    transform: rotate(-2deg) scale(1.1);
    cursor: pointer;
}

.box img {
    width: 100%;
    height: 55%;
    object-fit: cover;
    padding: 5px;
}

.box p{
    padding: 10px;
}
.box h1{
    padding: 10px;
    font-size: 20px;
}

footer{
    width: 100%;
    height: 10%;
    background-color: #262e7a;
    text-align: center;
    color: #f5f1f2;
    line-height: 90px;
    margin-top: -100px;
}

