nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 10px 0 0;
    background: #133b5c;
    z-index: 152;
    box-shadow: 0 10px 15px rgba(19, 59, 92, 0.52);
    transition: transform 0.25s ease-in-out;
}

nav button{
    outline: none;
    border: 1px dashed #fff;
    border-radius: 20px;
    padding: 8px;
    background: #b83843;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

nav button:active{
    transform: scale(.9);
}

.title {
    display: flex;
    }
    
.title img {
    width: 300px;
}
