/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face { font-family: "cb"; src: url("/assets/fonts/ChargerBold-gXaY.otf"); }
@font-face { font-family: "cd"; src: url("/assets/fonts/Christopher Done.ttf"); }
@font-face { font-family: "ch"; src: url("/assets/fonts/Chlora.ttf"); }
@font-face { font-family: "im"; src: url("../assets/fonts/IMFellDWPicaSC-Regular.ttf"); }

/* Nav Style */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0);
    background-image: url("/assets/overlay/smoke-heading7.PNG");
    border-bottom: 2px solid rgb(128, 94, 0);
}

.logo-pic {
    height: 120px;
    width: auto;
    padding: 2px 16px;
}

.ipsum-nav {
    margin-top: 78px;
    background: rgba(18, 18, 18, 0.641);
    padding: 10px 2px;
    border-radius: 4px;
}

.ipsum-nav a {
    margin-left: 16px;
    display: inline-block;
    font-family: "ch";
    font-size: 28px;
    font-weight: bolder;
    text-decoration: none;
    border-right: 2px solid rgb(140, 107, 0);
    padding-right: 20px;
    background: url("/assets/bgs/bobby-font2.png");
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.ipsum-nav a:first-child {
    padding-right: 18px;
}
.ipsum-nav a:last-child {
    border-right: none;
    padding-right: 18px;
}


/* Body Styling */
body {
    position: relative;
    background: url("/assets/bgs/bobby-bg.png") no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    min-height: 100vh;
    height: 100%;
}

.container {
    min-height: 100vh;
    height: auto;
    background-color: rgba(0, 0, 0, 0.838);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.title {
    margin-top: 60px;
    font-family: "im";
    color: rgb(170, 101, 27);
    font-size: 78px;
    text-shadow: 0px 0px 10px rgb(47, 47, 47);
}

#typeSelect,
#countSelect {
    font-family: "ch";
    font-size: 30px;
    font-weight: bold;  
    margin: 26px 24px;
    padding: 10px 16px;
}

#genBtn {
    font-family: "im";
    font-size: 34px;
    padding: 10px 12px;
    color: rgb(188, 113, 32);
    background-color: rgb(33, 33, 33);
    border: 3px solid;
    margin-top: 18px;
    font-weight: bold;
    cursor: pointer;
}

.outputBox {
    width: 70%;
    margin: 50px 0px;
}

#output {
    font-family: "ch";
    font-size: 28px;
    color: rgb(220, 220, 220);
    text-shadow: 0px 0px 15px black;
}

#output p {
    margin-top: 20px;
}


/* Responsive */
@media (max-width: 600px) {
    .logo-pic {
        height: 150px;
        padding: 2px 10px;
    }
    
    .ipsum-nav {
        margin-top: 0px;
        padding: 7px 8px;
        text-align: center;
        background: rgba(20, 20, 20, 0.986);
        margin-left: 6px;
    }

    .ipsum-nav a {
        font-size: 26px;
        border: none;
        padding: 6px 10px;
        margin: 10px 0px;
    }

    .container {
        width: 85%;
    }

    .title {
        margin-top: 46px;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 50px;
        line-height: 1;
    }

    #typeSelect,
    #countSelect {
        font-size: 25px;
        padding: 6px 6px;
        margin-top: 35px;
        margin-right: 6px;
        margin-left: 6px;
    }

    #genBtn {
        font-size: 30px;
        margin-top: 20px;
        padding: 8px 10px;
    }

    .outputBox {
        width: 80%;
        margin: 30px 0px;
    }

    #output {
        font-size: 24px;
    }

    #output p {
        margin-top: 20px;
        line-height: 1.3;
    }

}

@media (min-width: 601px) and (max-width: 1100px) {
    .logo-pic {
        height: 200px;
        width: auto;
        padding: 20px;
        margin-left: 70px;
    }

    .ipsum-nav {
        margin-top: 0px;
        margin-right: 4px;
        margin-left: 90px;
        text-align: center;
        background: rgba(20, 20, 20, 0.795);
    }

    .ipsum-nav a {
        margin: 7px;
        padding: 7px;
        font-size: 29px;
        border-right: none;
    }

    .container {
        width: 80%;
    }

    .title {
        margin-top: 45px;
        margin-bottom: 22px;
        line-height: 0.95;
    }

    #typeSelect,
    #countSelect {
        font-size: 28px;
        margin: 24px 20px;
    }

    #output {
        margin-top: 20px;
        font-size: 27px;
    }

    #output p {
        line-height: 1.4;
        margin-top: 26px;
    }
}