body{
        padding-top: 50px;
        padding-bottom: 50px;
        position: relative;
}
.nav-bar{
        box-shadow: 0 1px 5px rgb(80, 80, 80);
}
.main-container{
        box-shadow: 0 1px 10px;
        border-radius: 14px;
        padding: 20px;
        color: white;
        position: relative;
        backdrop-filter: blur(0.8px);
        margin: 40px;
        font-weight: 500;
        transition: 0.5s ease;
        height: 100%;
}
.main-container:hover{
        transform: scale(1.02);
        cursor: pointer;
}
main p{
        margin-bottom: 15px;
        max-width: 450px;
}
.image-container{
        position: absolute;
        top: 0;
        left:0;
        right: 0;
        height : 100%;
        z-index: -1;
       
}
body{
        font-family: arial;
        font-weight: 600;
}

.content-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

}
.vertical{
        display: flex;
        flex-direction: column;
        width: 50%;
        justify-content: space-between;
        margin-right: 20%;
}
.button-container{
        margin-top: 5px;
}
footer{
        background-color: transparent;
        backdrop-filter: blur(5px);
}

.buttons{
        padding: 10px 10px;
        border-radius: 5px;
        border: none;
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 1px 5px gray;
        transition: 0.5s;
}
header{
        background-color: #010630;
        color: white;
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        margin-bottom: 10px;
        
}
.header-container{
        display: flex;
        flex-direction: column;
        padding: 10px;
        font-size: small;

}
.image-section{
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        
}
main img{
        width: 100%;
        height: 100%;
        max-height: 300px;
        max-width: 300px;
}
h2{
        margin-bottom: 25px;
        width: 180px;
}

.buttons:hover{
        transform: scale(1.01);
        opacity: 0.8;
        cursor: pointer;
        background: white;
        color: var(--primary-color);
        box-shadow: 0 1px 5px ;
}