body {
    background-color: rgb(28, 27, 25);
    
    color: #fcd462;
}
.btngold {
    background-color: transparent;
    padding: 10px 20px;
    border: 2px solid #fcd462;
    color: #fcd462;
}

    .btngold:hover {
        background-color: #fcd462;
        padding: 10px 20px;
        border: 2px solid #fcd462;
        color: white;
    }

.div-with-gradient-border {
    position: relative;
    padding-bottom: 0px; /* optional: space for border */
}

    .div-with-gradient-border::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px; /* thickness of bottom border */
        width: 100%;
        background: linear-gradient( 90deg, rgba(255, 236, 184, 0.76) 16%, rgba(252, 212, 98, 1) 50%, rgba(255, 236, 184, 0.79) 84% );
    }

.div-with-top-gradient-border {
    position: relative;
    padding-top: 2px; /* optional: space for border */
}

    .div-with-top-gradient-border::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 2px; /* thickness of top border */
        width: 100%;
        background: linear-gradient( 90deg, rgba(255, 236, 184, 0.76) 16%, rgba(252, 212, 98, 1) 50%, rgba(255, 236, 184, 0.79) 84% );
    }

.sectiontitle {
    font-size: 72px;
    letter-spacing: -1px;
    /* font-size: 2rem; */
  
    text-align: center;
    margin-bottom: 2rem;
}

.footer ul li a {
    color: #fcd462;
    text-decoration: none;
}

.social-icons a {
    margin-right: 5px;
    color: #fcd462;
}
.goldencolor {
    color: #fcd462;
}