*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: burlywood;
    font-size: 15px;
}
header{
    background-color: rgb(255, 251, 246);
    color: white;
    
    height: 100px;
    margin: 0 auto;
    top: 20px;
    margin-top: 5px;
    border-radius: 5px;
    border: 5px blue;
    border-color: blue;
}
.row-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.row-1 img{
    width: 100px;
    
}
.row-1 ul{
    display: flex;
    margin-right: 25px;
}
.row-1 ul li{
    list-style-type: none;
    margin: 5px;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.row-1 ul li a{
    text-decoration: none;
    color:rgb(255, 255, 255);
    background-color: rgb(173, 146, 69);
    width: 75px;
    height: 30px;
    text-align: center;
    border-radius: 10px;
    padding: 5px;



}


.row-1 ul li a{
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}



.row-1 ul li a:hover{
    text-decoration: none;
    color: rgb(173, 146, 69);
    background-color: rgb(255, 255, 255);
    width: 75px;
    height: 30px;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
}
.row-1 h1{
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container{
    flex-basis: 960px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
}
.link ul{
    display: flex;
    flex-basis: 48%;
    max-width: 960px;
    margin: 0 auto;
}
.link ul li{
    list-style-type: none;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin: 0 auto;
    margin-top: 10px;
}
.link ul li a{
    text-decoration: none;
    color:black;
    background-color: orange;
    width: 450px;
    height: 30px;
    text-align: justify;
    border-radius: 10px;
    padding: 5px;

}
.link ul li a:hover{
    text-decoration: none;
    color:black;
    background-color: rgb(71, 216, 71);
    width: 450px;
    height: 30px;
    text-align: justify;
    border-radius: 10px;
    padding: 5px;

}

.content-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.large-article {
    flex: 2;
    background-color: #fff8dc;
    padding: 20px;
    border-radius: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 3px solid #8f6f45;
}

.large-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #5C4033;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(216, 187, 108);
    color: rgb(0, 0, 0);
    border-top: 3px solid rgb(143, 123, 59);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    z-index: 1000;
}
