* {
    padding: 0; bottom: 0; border: 0;
}

body {

}

header {
    background-color: #222;
    color: white;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.container {
    display: flex;
    flex-flow: row wrap;
    
}

.bigbox1, .bigbox2 {
    flex: 1 0 50%;
    min-height: 100svh;
    min-width: 300px;
}

.bigbox1 {
    background-color: blue;
    background-image: url(../images/surfpic1.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bigbox2 {
    background-color: green;
    background-image: url(../images/surfpic2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* .topbox {
    background-image: linear-gradient(red, blue );
    width: 40%;
    aspect-ratio: 3/1;
    position: absolute; top: 4px; left: 50%;
    transform: translateX(-50%);
} */