/* 1: Extra small devices (phones, less than 768px) */
/* No media query since this is the default ruleset in a "mobile first" approach */
img,picture,video,iframe {
    max-width: 100%;
    height:auto;
}
body {
    background-color: #f0edeb;
    margin: 0px;
    font-family: sans-serif;
}
#myheader {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.navlinks a {
    text-decoration: none;
    font-family: oswald;
    font-size: 1.2em;
    font-weight: 600;
    color: #42131f;
}
.navlinks {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    background-color: #f0edeb;
    padding: 5px 5px;
}
#mymain {
    display: flex;
    flex-direction: column;
}
#mymain section {
    height: 200px;
}
h2 a {
    text-decoration: none;
    font-family: oxanium;
    font-weight: 500;
    color: #42131f;
    background-color: #9bb600e3;
    padding: 10px 30px 10px 5px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 10px;
}
.mainone {
    text-align: center;
    color: #42131f;
    font-family: oswald;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 20px;
}
.mainone a{
    text-decoration: none;
    text-align: center;
    color: #9bb600;
    background-color: #09173f;
    padding: 2px 5px;
    border-radius: 5px;
    border-top-right-radius: 0px;
}
h3 {
    color:#09173f;
    font-size: 1em;
    line-height: -5px;
}
h3 span {
    font-weight: 700;
    color: #9bb600;
}
.maintwo {
    background-image: url(assets/canoes.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #9bb600;
}
.mainthree {
    background-image: url(assets/jacket.png);
    background-repeat: no-repeat;
    background-size:cover;
    background-color: #f0edeb;
}
.mainfour {
    background-image: url(assets/bwportbg-2048.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #09173f;
}
#myfoot {
    background-color: #9bb600;
    text-align: center;
    padding: 8px 10px;
}
#myfoot a {
    text-decoration: none;
    color: #09173f;
    font-family: oswald;
    font-size: 1.3em;
    padding: 5px 8px;
}
/* 2: Small devices (tablets, 768px and up) */
@media (min-width:768px) { 
}

/* 3: Medium devices (desktops, 992px and up) */
@media (min-width: 992px) { 

}

/*4: Large devices (large desktops, 1200px and up)*/
@media (min-width:1200px) {
#myheader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#myheader h1 {
    font-family: oxanium;
    color: #42131f;
    font-size: 4em;
}
.navlinks {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.navlinks a {
    color:#42131f;
    text-decoration: none;
    font-size: 1.7em;
    padding: 8px 20px;
}
.navlinks a:hover {
    color: #9bb600;
}
#mymain {
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    flex-wrap: wrap;
    align-items: stretch;
    margin: auto 50px;
    min-height: 1200px;
}
#mymain div {
    flex-basis: 47%;
    min-height: 700px;
    margin: 10px auto;
}
.mainone {
    font-size: 2em;
    text-align: justify;
}
h2 a {
    font-size: 2em;
}
#myfoot {
    font-size: 1.6em;
}
}