body{
    background-color: #f3f3f3;
    padding: 0;
    margin: 0;
    background-image: url("StockSnap_YWOZVXFSDG.jpg");
}

.header{
    background: #070e27;
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image{
    height: inherit;
}

.body{
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-container{
    padding: 100px;
    width: fit-content;
    height: fit-content;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.body-title{
    text-align: center;
    position: relative;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
}

.body-title::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 400px;
    background-color: #fdbf00;
    z-index: 1;
}