* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}



header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 10px 0;
}

main{
    display: flex;
    justify-content: center;
}

#articles{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contain{
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

p {
    max-width: 300px;
    max-height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px;
    padding-bottom: 10px;
}

fieldset {
    margin: 10px;
    max-width: 410px;
    display: flex;
    flex-direction: row;
}

a {
    text-decoration: none;
    color: black;
}

legend {
    font-size: 2em;
}