@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html, body{
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    height: 100%;
}
.fs-7{
    font-size: 14px;
}
.fs-8{
    font-size: 13px;
}
.btn-dark{
    background-color: black;
}
#main{
    height: auto;
    min-height: calc(100vh - 250px);
}
#hero{
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: calc(100vh - 250px);
    display: flex;
    justify-content: center;
    align-items: center;
}
#hero *{
    z-index: 2;
}
#hero:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#hero form{
    background-color: #00000065;
}
#hero form textarea{
    padding-top: 12px;
}
#hero form textarea::placeholder{
    color: rgba(0, 0, 0, 0.336);
}
#hero form textarea, #hero form button{
    min-height: 50px;
}


#hero.hero form textarea, #hero.hero form button{
    min-height: 40px;
}
#image-container.loading>img{
    display: none;
}
#image-container>img{
    max-height: 440px;
    object-fit: contain;
    background: #eee;
}
#top{
    background-color: #cdff4e;
}
#generator2.home{
    width: 760px;
    max-width: 100%;
    margin: 20px auto;
    background: rgba(155, 155, 155, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.6px);
    -webkit-backdrop-filter: blur(6.6px);
}
#hero form.home textarea::placeholder{
    color: rgba(255, 255, 255, 0.426);
}
.navbar-nav li a{
    border-bottom: 2px solid transparent;
}
.navbar-nav a:hover{
    border-color: #cdff4e;
    color: #cdff4e!important;
}
header a.link:hover{
    color: #cdff4e!important;
}
form .form-select:hover{
    background: #424649!important;
}
@media screen and (max-width: 767px){
    #hero form textarea{
        min-height: 120px;
    }
    #generator >div span{
        width: 100%;
    }
}