* {
    font-family: 'Poppins', sans-serif;
}

body {
    /*background-image: url('https://wallpapercave.com/wp/wp11051336.jpg');*/
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;

    background-color: #eeeeec;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar {
    transition: box-shadow 0.1s ease-in-out;
}

.animated-icon {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.animated-icon span:nth-child(1) {
    top: 0;
}

.animated-icon span:nth-child(2) {
    top: 9px;
}

.animated-icon span:nth-child(3) {
    top: 18px;
}

.navbar-toggler.collapsed .animated-icon span:nth-child(1) {
    top: 0;
    transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(2) {
    scale: 0;
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}