body{
    display: flex;
    flex-direction: column;
    background-color: #8D8382;
    overflow-y: scroll;
}

.hero-section {
    position: relative; 
    width: 100% !important;
    max-height: 100vh;
    margin: 0;  
    padding: 0;
    display: flex;
    align-items: flex-end; 
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100vh; 
    object-fit: cover;  
}

#hero-content {
    position: absolute;
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);  
    z-index: 2; 
}

.nav {
    margin: 0;  
    position: relative;
    z-index: 3;  
}


.section-wrapper{
    background-color: khaki;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: center;
}

div.section-wrapper > ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-evenly;
}

#section-1{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
}

.footer{
    display: flex;
    height: 2em;
    width: 100%;
    align-content: center;
    justify-content: center;
}

.article{
    width:60rem;
}
.articl p{
    font-size:medium;
}

.content{
    width: 100%;
    background-color: #312D2C;

    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 91vh;
}
.container{
    display: flex;
    flex-direction: row;
}

.continer > *{
    flex:0 0 200px;
}

.comments{
    width: 30rem;
    align-items: center;
}

.comment{
    width: 25rem;
}

.comment-input{
    width:25rem;
}

.login-container{
    margin: auto;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.register-container{
    margin: auto;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #312d2c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #dc3645;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}