* {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}
html {
    font-family: Arial, Helvetica, sans-serif;
}
h1 {
    font-weight: normal;
}

main {
    width: 960px;
    margin: 0px auto;
}

.header {
    height: 100vh;
    background: url(/pots.png) center center;
    background-size: cover;
    display: flex;
}
.header .container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.header h1 {
    font-size: 4em;
}

.information {
    padding: 2em;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2em;
}
p {
    margin-top: 1em;
}
.information img {
    width: 100%;
}

.contact .map {
    height: 300px;
    background: url(map.png) center center;
    background-size: cover;
}
.contact .details {
    padding: 2em;
    background: #28190e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact .details .withlove {
    display: flex;
    align-items: end;
}

.news .content {
    padding: 2em;
    margin-top: -2em;
}

a {
    color: red;
}