@import url('./footer.css');

.one-topic {
    /* background-color: red; */
    padding-top: 0px;
    max-width: 650px;
    text-align: justify;
}
.inner-container{
    align-items: baseline !important;
    max-width: 700px !important;
}

.one-topic p {
    font-size: 18px;
}
.one-topic ul {
    /* border: 1px solid gray; */
    padding: 0px;
    padding-left: 20px;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    border-left: 2px solid gray;
}
.one-topic li{
    /* background-color: lightgray; */
    /* border: 1px solid gray; */
    padding: 20px;
    padding-left: 40px;
    box-sizing: border-box;
    font-weight: 700;
    position: relative;
}
.one-topic li::before {
    content: "";
    height: 25px;
    width: 22px;
    left: 5px;

    position: absolute;
    /* background-color: #ff0000; */
    background-image: url('../static/diploma-icon.png');
    background-size: cover;
}
.first-section {
    margin-top: 100px;
}
.last-section {
    margin-bottom: 100px;
}

.external-site-ref{
    color: black;
}
.external-site-ref > a {
    color: green
}
.hoverable-cert{
    transition: 300ms;
}
.hoverable-cert:hover{
    color: green;
    cursor: pointer;
}