@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap');

/* .navbar.navbar-expand-lg {
    display: none;
} */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

html {
    height: 100dvh !important;
    width: 100dvw !important;
    overflow: hidden;
}

body {
    background-color: #1c0728;
    height: 100%;
    width: 100%;
}

pre {
    color: #fff;
    margin-left: 10px;
    padding-bottom: 20px;
}

#content { 
    display: flex;
    flex-direction: column;
    height: 100% !important;
    width: 100% !important;
    font-family: 'Comic Relief', 'Comic Sans', cursive;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#wordleForm {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}

.title {
    margin-top: 0px;
    margin-bottom: 100px;
    text-align: center;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: -4px 4px #ef3550,
        -8px 8px #f48fb1,
        -12px 12px #7e57c2,
        -16px 16px #2196f3,
        -20px 20px #26c6da,
        -24px 24px #43a047,
        -28px 28px #eeff41,
        -32px 32px #f9a825,
        -36px 36px #ff5722;
}

.modaltitle {
    color: #000 !important;
    font-size: 2rem;
    font-weight: 800;
}

#submit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18pt;
    margin-top: 20px;
    height: auto;
    border-radius: 7px;
    background-color: #82c91e;
    color: #fff;
    outline: none;
    font-weight: 800;
    padding: 5px 15px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

#submit:hover {
    background-color: #5f9c0b;
    transform: scale(0.8);
}

#bridgeButton {
    display: flex;
    font-size: 18pt;
    font-weight: 800;
    margin-top: 10px;
    background-color: #1b3db5;
    border-radius: 7px;
    transition: all 0.3s;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px 15px;
}

h2 {
    margin-top: 20px;
}

textarea {
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    padding: 5px;
}

.vert {
    display: flex;
    flex-direction: column;
}

#parentContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#reverdleOutput {
    margin-left: 10px;
}

#modalContainer {
    position: absolute;
    display: flex;
    height: 100dvh;
    width: 100dvw;
    justify-content: center;
    align-items: center;
    top:0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
}

.modal {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.7);
    color: #000;
    background-color: #fefefe;
}

.modalTitleBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    height: 10%;
}

#modalClose {
    margin-left: 50px;
    font-size: 2rem;
    font-weight: 800;
    aspect-ratio: 1/1;
}

.modalContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90%;
}
