@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

body{
    margin: 5;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    font-family: 'poppins', sans-serif;
}

section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*------Navbar-----*/
#navbar{
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}


.bold{
    font-size: 20px;
}

li{
    padding: 5px;
}


.nav-link{
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
}

.nav-link:hover{
    border-bottom: 2px solid blue;
    transition: .1s;
}


/*----------Home--------------*/

#home img{
    width: 25rem;
    height: 25rem;
    border-radius: 50px;
}

span{
    color: blue;
    font-weight: bold;
}
p{
    font-size: 12px;
}


/*------About-----*/
#about img{
    width: 25rem;
    height: 25rem;
    border-radius: 50px;
}

/*-------------------------------------------------------*/
/*----                   EVENEMENTS PAGE             ----*/
/*-------------------------------------------------------*/

.head-menu{
    border-radius: 5px;
    border: 1px solid red;
}


.recent-post-title {
    padding-top: 2rem;
    margin: 1rem;
}


.event {
    padding: 3rem;
    padding-top: 0rem;
    border-radius: 10px;
    border: 1px solid rgb(95, 91, 91)
}


.post-image {
    width: 25rem;
    height: 25rem;
    border-radius: 10px;
}
