:root {
    --red: darkred;
    --secondaryred: #5d0e04;
    --white: white;
    --gray: #62676a;
    --cleargray: #f7f7f8
}

body {
    margin: 0;
    padding: 0;
    font-family: Fira;
}

h1 {
    font-size: 6vw;
    font-weight: 900;
    color: darkred;
}


/* span {
    font-size: 3vw;
} */

h2 {
    color: var(--cleargray);
    font-size: 3vw;
}

h3 {
    color: var(--cleargray);
    font-size: 2vw;
}

h4 {
    color: var(--secondaryred);
    font-size: 1.2vw;
}

p {
    color: var(--cleargray);
    font-size: 1.8vw;
    line-height: 1.8rem;
}

hr.solid {
    border-top: 3px solid white;
}

img {
    border-radius: 8px;
}

i {
    font-size: 1rem;
    padding-right: 0.5rem;
    color: var(--secondaryred)
}

.hero {
    background-image: url("ship.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overlay {
    background: linear-gradient(rgba(68, 67, 67, 0.37), rgba(0, 0, 0, .70)), url("ship.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 100vh;
    padding-top: 50px;
}

@media screen and (min-width:300px) and (max-width:550px) {
    h1 {
        font-size: 12vw;
    }
  h2{
  font-size:10vw;}
  h3{
  font-size:8vw;
  }
  
  h4{
  font-size: 6vw;
  }
  
  p{
  font-size: 4vw;
  }
  
  
}