:root {
    --green: #b5b70c;
    --white: #ffffff;
}

* {
    outline: none;
}

body {
    font-family: 'Baloo Bhaijaan 2', cursive;
    border-bottom: 2px solid var(--green);
}

img{
    max-width: 100%;
}

a {
    text-decoration: none;
}

.min-100 {
    min-height: calc(100vh - 122px);
}

header img {
    max-height: 100px;
}

h4 span {
    color: var(--green);
}

.social-links a {
    color: var(--white);
    width: 100%;
    min-height: 100px;
    height: 50px;
    font-size: 2rem;
    background: var(--green);
    padding: 0 15px;
}

.social-links a img{
    max-height: 30px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.social-links a span{
    font-size: 16px;
}

.shape {
    color: var(--green);
    position: absolute;
    display: flex;
    overflow: hidden;
    z-index: 10;
}

.shape-1 {
    font-size: 4rem;
    right: 10%;
    bottom: 0;
}

.shape-2 {
    font-size: 6rem;
    left: 10%;
    bottom: 0;
}

.shape-3 {
    z-index: 5;
    bottom: 0;
}

footer {
    padding-top: 120px;
}

@media only screen and (max-width: 992px) {
    .min-100 {
        min-height: calc(100vh - 40px);
    }
    .shape-1 {
        font-size: 3rem;
        bottom: 11px;
    }
    .shape-2 {
        font-size: 5rem;
    }
}