
body{
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header{
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0rem;
    border: 0px solid black;


}
hr{
    width: 50%;
    height: 0.3rem;
    border-radius: 0.1rem;
    background-color: black;
}
.page-title{
    font-size: 8rem;
    font-family: 'Montserrat';
    font-weight: bold;
    width: 100%;
    height: fit-content;
    border: 0px solid green;
    text-align: center;
}
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}
.main-container{
    width:50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0px solid black;
}
.item-gallery{
    max-width: 1056px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 0px solid black;

}

.item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 35vh;
    width: 32%;   
    padding : 0.1vw;
}
.item-title{
    font-size: 3vh;
    font-family: 'Montserrat';
    font-weight: bold;
}
.date{
    font-size: 2vh;
    font-family: 'Montserrat';
    font-weight: normal;
}

.item a{
    text-decoration: none;
    color:black;
}

.item img{
    width: 100%
}












button{
    background-color: rgba(245, 245, 220, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    border: none;
    font-size: 2rem;
    height: fit-content;
    font-family: 'Montserrat';
    font-weight: bold;
    padding: 1rem;
    transition: 0.2s ease-in-out;
    cursor:pointer;
    margin-right: 80vw;
    text-wrap: nowrap;
}

a{
    text-decoration: none;
}

button:hover{
    color: green;
    text-shadow: 0.4rem 0.4rem 0rem rgba(0, 128, 0, 0.411);
    opacity: 0.5;
}


/*========================Phones===================================/**/

@media (max-width:1000px){
    body{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0px solid black;
    }
    header{
    width: 92%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding:0rem;
    margin: 0;
    border: 0px solid black;
    margin-top: 2vh;

}
    hr{
        width: 92%;
        height: 0.1rem;
        border-radius: 0.1rem;
        background-color: black;
    }
    .page-title{
        font-size: 3rem;
        font-family: 'Montserrat';
        font-weight: bold;
        width: 100%;
        border: 0px solid green;
        text-align: center;
    }
    .main-container{
        width: 92%;

    }
    .item{
    display: flex;
    flex-direction: column;
    align-items: top;
    width: 48%;   
    height: fit-content;
    padding : 0.1rem;
    }
    .item-title{
        text-wrap: wrap;
        font-size: 3vw;
    }
    .date{
        font-size: 2vw;
    }
    button{
    background-color: rgba(245, 245, 220, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    border: none;
    font-size: 1rem;
    height: fit-content;
    font-family: 'Montserrat';
    font-weight: bold;
    padding: 1rem;
    transition: 0.2s ease-in-out;
    cursor:pointer;
    
    }

}