.my-p-20 {
    padding: 20px;
}

.heading {
    position: relative;
    margin-left: 0vw;
    padding: 20px;
    display: inline-flex;
}

.heading-circle {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
}

.about-us h2 {
    position: relative;
    left: 30px;
    padding-left: 20px;
}

.about-us {
    position: relative;
}

.line {
    background-color: rgba(5, 5, 5, 0.1);
    margin-top: 32px;
    height: 90%;
    width: 2px;
    text-align: center;
    font-weight: 800px;
    position: absolute;
    margin-left: 38px;
}

#menu_icon {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    bottom: 30px;
    margin-left: 5px;
    text-align: center;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    border: 2px solid black;
    background-color: white;
}

div.scrollmenu {
    background-color: #263238;
    overflow: auto;
    white-space: nowrap;
    position: fixed;
    width: 100vw;
    top: -3px;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    z-index: 12;
    left: 0;
    background: linear-gradient(to bottom, #14274e 0%, #9ba4b4 110%);
    color: white;
}

div.scrollmenu a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    padding-left: 55px;
    box-sizing: border-box;
    color: black;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 1.5em;
    color: #66FFFF;
    font-family: Iceland;
}

div.scrollmenu a:hover {
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
    color: white;
    border-radius: 2px;
    -webkit-animation: neon2 1.5s ease-in-out infinite alternate;
    -moz-animation: neon2 1.5s ease-in-out infinite alternate;
    animation: neon2 1.5s ease-in-out infinite alternate;
}

@keyframes neon2 {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228DFF, 0 0 70px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 150px #228DFF;
    }
    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #228DFF, 0 0 75px #228DFF;
    }
}

@keyframes neon-title {
    from {
        text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 40px #228DFF, 0 0 30px #228DFF, 0 0 80px #228DFF, 0 0 100px #228DFF, 0 0 80px #228DFF;
    }
    to {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 10px rgb(223, 24, 24), 0 0 20px #228DFF, 0 0 35px #228DFF, 0 0 40px #228DFF, 0 0 50px #e90eb9, 0 0 75px #e90eb9;
    }
}

.icon-color {
    padding-right: 7px;
}

.footer {
    position: absolute;
    padding: 10px;
    background-color: #263238;
    /*font-size: 14px;*/
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-weight: bold;
    width: 100%;
    text-align: center;
    bottom: 0px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 1.2em;
    color: #66FFFF;
    font-family: Iceland;
}

.footer:hover {
    -webkit-animation: neon2 1.5s ease-in-out infinite alternate;
    -moz-animation: neon2 1.5s ease-in-out infinite alternate;
    animation: neon2 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 450px) {
    .footer {
        position: absolute;
        bottom: -40px;
    }
}

#toggle {
    display: none;
}

.togglearea {
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    display: none;
}

.togglearea #line {
    background-color: transparent;
    width: 49px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 40px;
    
}

.togglearea label span {
    width: 70%;
    height: 3px;
    display: flex;
    cursor: pointer;
    margin: 3px 0px;
    background-color: #66FFFF;
    font-family: 'Major Mono Display', monospace;
    -webkit-animation: neon-title 1.3s ease-in-out infinite alternate;
    -moz-animation: neon-title 1.5s ease-in-out infinite alternate;
    animation: neon-title 1.5s ease-in-out infinite alternate;
}

.template-title {
    display: none;
}

@media screen and (max-width: 700px) {
    div.scrollmenu {
        opacity: 0.7;
        top: 58px;
        display: none;
        flex-direction: column;
    }
    div.scrollmenu a:hover {
        background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
        color: white;
        border-radius: 2px;
        -webkit-animation: neon2 1.5s ease-in-out infinite alternate;
        -moz-animation: neon2 1.5s ease-in-out infinite alternate;
        animation: neon2 1.5s ease-in-out infinite alternate;
    }
    #toggle:checked+div.scrollmenu {
        display: flex;
    }
    .template-title {
        position: absolute;
        display: flex;
        /*left: 40px;*/
        right: 70px;
        top: 0px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
       font-size: 30px;
        color: #66FFFF;
        font-family: 'Seaweed Script', cursive;
        /*-webkit-animation: neon-title 1.3s ease-in-out infinite alternate;
        -moz-animation: neon-title 1.5s ease-in-out infinite alternate;
        animation: neon-title 1.5s ease-in-out infinite alternate;*/
    }
    .togglearea {
        display: flex;
    }
}