@import "dramakids.css";

.nav-account {}
.nav-account a {font-weight:bold!important;}
.container.contentwrap {padding-top:200px;}
.contentwrap h2 {font-weight:bold;font-size:2em;margin-bottom:10px;}

.follow-us {display:none;}

footer#global-footer nav ul li a {color:#00AAB3;}
footer#global-footer h3 {color:#d3036a}

.social-links {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 0 0 0;
    margin: 0;
    gap: 1.5rem;
    li {
        list-style-type: none;
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #fff;
            border-radius: 50%;
            overflow: hidden;
            line-height: 30px;
            width: 30px;
            height: 30px;
            transition: background-color 0.3s ease;
            svg {
                width: 14px;
                fill: #00aab3;
            }
            &:hover {
                background-color: #D3036A;
                svg {
                    fill: #000;
                }
            }
        }
    }
}