* {
    box-sizing: border-box;
}

body {
    background-color: white;
}

section {
    margin-block: 30px;
}

header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    text-align: start;
}

img {
    max-width: 100%;
    height: auto;
}

header img {
    max-width: 100%;
    height: auto;
    padding: 10px;
}


.primary-navigation ul{
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: start ;
}

.primary-navigation a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: rgb(154, 116, 190);
}

.teal-text {
    color: #087a98;
}

a {
    color: blueviolet;
}


a:hover,
a:focus-visible{
    color: rgb(154, 116, 190);
}




h1 {
    font-size: clamp(32px, 6vw, 70px);
    text-align: center;
    line-height: 1.1;

    @media (width > 720px) {
  
        
    }
}

header {
    text-align: start;
}


.accent {
    color: red;
}

footer {
  text-align: center;
}

h2 {
    color: orange;
}

#first-paragraph {
    color: #22466c;
}

.box {
    width:auto
}

.box img{
    width: 100%;
}

.teal-bg {
    color: #ffffff;
    border: #0b4a5a solid 6px;
    padding: 6px;
    background-color: #087a98;
}

.climber-bg {
    position: relative;
    color: #ffffff;
    background-image: url(image\ copy\ 5.png);
    padding: 24px;
    border: 6px solid #1e6475;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 153, 0.5);
}

.climber-bg h3,
.climber-bg p {
  position: relative;
  z-index: 1;
}

.teal-bg strong {
          color: burlywood;
}

.teal-bg .teal-text {
            color:rgb(233, 233, 233);
}

.wrapper {
    max-width: 1000px ;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.two-column-layout {
       gap: 60px;
       display: flex;
       flex-wrap: wrap;
       margin-block-end: 60px;

       @media (width > 600px) {
        grid-template-columns: 1fr 1fr;
       }
}

.two-column-layout > * {
    flex: 1;
    min-width: 250px;
}

.column{
    max-width: 100%;
    height: auto;
}