.outer-container {
    width: 100%; 
    height: 80vh; 
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    filter: brightness (80%);
}

.inner-container {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.inner-container h1 {
    font-family: "pill-gothic-300mg", sans-serif;
    font-size: 4rem;
    border-bottom: none;
    color: #f9d415;
    margin: 0 0 15px;
    width: 80%;
}

.inner-container p {
    font-family: "proxima-nova", sans-serif;
    /*font-size: 1rem;*/
    color: #ffffff;
    margin: 0 0 30px;
    font-weight: medium;
    width: 70%;
}

/* For devices with a max-width of 1440px */
@media (max-width: 1440px) {
    .inner-container h1 {
    }
    /*.inner-container p {
        font-size: 1.2rem;
    }/*
}

/* For devices with a max-width of 1024px */
@media (max-width: 1024px) {
  
    .outer-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
     
}
    .inner-container {
        width: 100%;
    }
    .inner-container h1 {
        font-size: 3rem;
    }
    /*.inner-container p {
        font-size: 1.1rem;
    }/*
}

/* For devices with a max-width of 768px */
@media (max-width: 768px) {
  
    .outer-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
     
}
    .inner-container h1 {
        font-size: 2.5rem;
    }
   .inner-container {
        width: 100%;
        padding-top: 2%;
        padding-bottom: 2%;
    
}
