Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
body {
margin: 0;
font-family: 'Courier New', Courier, monospace;
}
.container {
width: 100vw;
height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"left right";
}
.right {
grid-area: right;
background-color: #222529;
}
.left {
grid-area: left;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
height: 10vh;
}
header .logo {
color: #fff;
font-size: 1.5rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}
header .logo img {
width: 80px;
margin-right: 10px;
}
header .nav-links {
display: flex;
justify-content: space-between;
align-items: center;
width: 30%;
}
header .nav-links li {
list-style: none;
}
header .nav-links a {
color: #fff;
text-decoration: none;
letter-spacing: 1px;
font-weight: 500;
font-size: 14px;
}
header .nav-links a:hover {
color: #f2f2f2;
}
header .burger {
display: none;
cursor: pointer;
}
.content {
padding-top: 10em;
width: 70%;
margin: 0 auto;
}
.content>img {
width: 100%;
}
@media screen and (max-width: 1050px){
.container {
display: flex;
flex-direction: column;
}
.content {
padding-top: 1em;
padding-bottom: 4em;
}
.content:nth-child(2n){
padding-top: 3em;
}
}