.yellow-btn {
    cursor: pointer;
    background-color: #FFDE59;
    padding: 5px 10px;
    border-bottom: 2px black solid;
    border-right: 2px black solid;
    border-radius: 10px;
    color: black;
    margin-right: 10px;
    font-weight: bold;
}
.black-btn {
    cursor: pointer;
    background-color: black;
    padding: 5px 10px;
    border-bottom: 2px #FFDE59 solid;
    border-right: #FFDE59 solid;
    border-radius: 10px;
    color: white;
    margin-right: 10px;
    font-weight: bold;
 }
.custom-header{
    background-color: white;
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    box-shadow: 0px 7px 8px 0px rgb(34 60 80 / 20%);
    left: 0;
}
.main-logo{
    background-image: url(../img/logo-without-bg.jpg);
    width: 250px;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}
.black-line{
    background-color: black;
    position: fixed;
    left: 5%;
    bottom: 25px;
    width: 90%;
    height: 10px;
}
.yellow-line{
    background-color: #FFDE59;
    position: fixed;
    right: 25px;
    top: 15%;
    height: 80%;
    width: 10px;
}