.wrapper {
    min-height: 100vh;
    background-color: #080828;
}

.hero {
    padding: 1rem 1rem 3rem;
    position: relative;
}

.hero .logo {
    width: 12rem;
    margin-bottom: 5rem;
} 

.hero .title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: lightgrey;
}

.hero .desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: lightgrey;
}

.hero .input {
    padding: .75rem;
    border: none;
    font-size: 1rem;
    box-shadow: none;
    margin-bottom: 1rem;
}

.hero .btn {
    background-color: #F1B038;
    color: #fff;
    padding: .75rem;
    border: none;
}

.heroImg {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: none;
}

.heroImg .img{
    height: 60vh;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: .25rem;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .wrapper {
        min-height: 100vh;
    }
    
    .hero .logo {
        width: 12rem;
        margin-bottom: 3rem;
    } 
    
    .hero .title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .hero .desc {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .hero .input {
        padding: .75rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero .btn {
        padding: .75rem;
    }
    
    .heroImg {
        position: relative;
        /* height: 100vh; */
        overflow: hidden;
        display: block;
    }
    
    .heroImg .img{
        height: 50vh;
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
    .hero .logo {
        width: 15rem;
        margin-bottom: 3rem;
    } 
    
    .hero .title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
    
    .hero .desc {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .hero .input {
        padding: .75rem;
        margin-bottom: 1rem;
    }
    
    .hero .btn {
        padding: .75rem;
    }
    
    .heroImg {
        height: 100vh;
        overflow: hidden;
    }
    
    .heroImg .img{
        height: 60vh;
    }
}