

#certificates-page {
    background-color: #181818;
    color: rgb(203, 250, 208);
    font-family: 'Times New Roman', Times, serif;
}


#back-drop {
    background-image: url(Icons/onusbs-background2.png);
    background-repeat: no-repeat; /* add repeat-y media query*/
    background-size: 100%;
    position: fixed;
    height: 100%;
    width: 95%;
    z-index: -5;
    transform: translate(0%, 5%);
    
}

#page-title {
    font-size: 40px;
    height: 80px;
    width: 100%;
    transform: translate(0%, 130%);
}

#name {
    top: 20%;
}


.section-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #131;
    fill-opacity: 0.05;
    
}

.section-heading p {
    text-align: center;
    font-size: 40px;
    width: 100%;

}

.certs-area {
    height: auto;
    width: 100%;
    filter: opacity(0.85);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    margin-top: 150px;

}



.cert-image {
    width: 300px;
    height: 200px;
    transition: ease-in 0.75s ;
    margin: 25px;
}

.cert-image:hover {
    transform: scale(1.5);
}

#download-resume-btn {
    background-color: #295;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    transition: color 2.3s ease;
}

#download-resume-btn:hover {
    background-color: #163;
    color: #FFF;
}

#resume-button {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    margin: 20px;
}

#code-wars {
    margin: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#code-wars-badge{
    width: 50%;
}

@media (max-width: 1000px) {
    #back-drop {
        background-repeat: repeat-y;
    }

    .cert-image {
        width: 200px;
        height: 100px;
    }

    .section-heading {
        font-size: 30px;
        width: 100%;
        height: auto;
        margin: 50px;
    }

    #code-wars-badge{
        width: 100%;
    }
    
}
