@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    padding-left: 2%;
    padding-right: 2%;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body{
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #231701, #DAA520);
}


header{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* WAS: margin-botton: 20px;*/
}

.logo{
    text-decoration: none;
    font-size: 35px;
    font-weight: 700;
}

nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a{
    color: #DAA520;
    text-decoration: none;
    transition: 0.5s;
}

nav ul li a:hover{
    color: #FDE800;
}

h1{
    color: #DAA520;
    margin: 30px;
    font-size: 35px;
}

.article_picture{
    border-radius: 8px;
    margin: 10px;
    background-image: url("/edited_about.jpg");
}

.article_container {
    height: 100%;
    display: flex;
    background-color: #DAA520;
    border-radius: 8px;
    margin-bottom: 100px;
}

.article_image img {
    object-fit: cover;
}

.about-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 100px;
}

.article_content p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}

@media(max-width: 500px){
    .article_container{
        display: block;
    }
}

.ONE,
.TWO,
.THREE,
.FOUR,
.FIVE,
.SIX,
.SEVEN,
.EIGHT,
.NINE,
.TEN,
.ELEVEN {
     flex: 0 0 50%;  /*Set flex-basis to 50% for a two-column layout  */
}


.TWO,
.THREE,
.FOUR,
.FIVE,
.SIX,
.SEVEN,
.EIGHT,
.NINE,
.TEN,
.ELEVEN{
    border-radius: 10px;
    min-height: 200px;
    background-color: #DAA520;
    margin-bottom: 90px;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    align-items: center;
}

.sublist{
    list-style: none;
}

.FOUR{
    text-align: center;
    font-size: 30px;
    background-color: transparent;
}

