@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy");



* {
    margin: 0px;
    padding: 0px;
}

.mainContainer {
    display: block;
    height: 100%;
}

body {
    background-color: #EAFFD0;
}

.header {
    background-color: #FCE38A;
    width: 100%;
    height: 100px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    align-self: flex-start;
    position: sticky;
    top: 0px;
}

.headerTitle {
    font-family: "Luckiest Guy", cursive;
    font-size: 60px;
    color: #EAFFD0;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc, 0 3px 0 #ccc, 0 4px 0 #ccc,
        0 5px 0 #ccc, 0 6px 0 transparent, 0 7px 0 transparent, 0 8px 0 transparent,
        0 9px 0 transparent, 0 10px 10px rgba(0, 0, 0, 0.4);
    /* background-image: url(https://www.pentaxforums.com/gallery/images/19978/small/1_colors.jpg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    display: inline;
    float: left;
}

.headerMenu {
    float: left;
    margin-top: 20px;
    margin-left: 40px;
    transition: 3s;

}

.headerMenu a {
    background-color: #FCE38A;
    border: 7px solid #EAFFD0;
    padding: 5px;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 10px;
    font-weight: normal;
    box-shadow: 3px 3px 1px black;
    border-top: 1px solid #EAFFD0;
    text-decoration: none;
    color: lightgoldenrodyellow;
    text-shadow: 1px 1px 10px grey;
    transition: 0.3s;
    display: inline;
    text-align: center;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 2px;
}

.headerMenu li {
    display: inline;
}

/* Add active class style */
.headerMenu a.active {
    border: 1px solid #EAFFD0;
}


.loginBtn {
    width: 100px;
    float: right;
    height: 60px;
    margin-top: 15px;
    margin-right: 50px;
    background: #FCE38A;
    border: 7px solid #EAFFD0;
    font-size: 20px;
    font-weight: bolder;
    border-top: 2px solid #EAFFD0;
    border-radius: 30px;
    box-shadow: 2px 2px 10px grey, -2px -2px 10px grey;

}


.bodyToDosCreatorBox {
    margin-top: 50px;
    margin-left: 50px;
    float: left;
    height: 500px;
    width: 300px;
    border: 15px solid #FCE38A;
    border-radius: 20px;
    box-shadow: 3px 3px 10px grey;
    padding: 30px;
}

.bodyToDosCreatedBox {
    position: relative;
    margin-top: 50px;
    margin-right: 50px;
    float: right;
    height: 500px;
    width: 65%;
    border: 15px solid #FCE38A;
    border-radius: 20px;
    box-shadow: 3px 3px 10px grey;
}

.bodyToDosCreatedBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/people-collaborating-with-tech-.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.btdcbCSS::before {
    filter: blur(10px);
}

.bodyToDosCreatorBoxNameLabel {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bolder;
    text-align: center;
    text-shadow: 1px 1px 1px black;
}

#bodyToDosCreatorBoxNameInput {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    border: 3px solid #FCE38A;
    background-color: #EAFFD0;
    color: black;
    font-weight: bold;
    text-align: center;
}

.bodyToDosCreatorBtn {
    display: block;
    margin: 40px auto;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    width: 150px;
    height: 40px;
    background-color: #FCE38A;
    color: black;
    text-shadow: 0.5px 0.5px 1px black;
    border-radius: 10px;
    border: 2px solid black;
}

.modalContentLoginDiv {
    background-color: #EAFFD0;
    border: 10px solid #FCE38A;
}

.modalLoginBtn {
    border: 1px solid black;
}


#modalLoginEmailInput {
    width: 100%;
    background-color: #EAFFD0;
    border: 3px solid #FCE38A;
    border-radius: 5px;
    text-align: center;
}

#modalLoginPasswordInput {
    width: 100%;
    background-color: #EAFFD0;
    border: 3px solid #FCE38A;
    border-radius: 5px;
    text-align: center;
}

.screenSmallAlert {
    display: none;
}

.bodyToDosCreatorImage {
    display: inline;
    margin-top: -40px;
    z-index: -1;
}

.bodyToDosErrorsMessages {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
}

@media screen and (max-width: 1183px) {

    /* CSS styles for screens lower than 1184px */
    .screenSmallAlert {
        display: block;
        text-align: center;
        margin-top: 300px;
        position: relative;

    }

    .screenSmallAlertImage {
        background-repeat: no-repeat;
        width: 200px;
        margin-top: -110px;
        z-index: 1;
        position: relative;
    }

    .screenSmallAlertText {
        z-index: 2;
        position: relative;
        background: rgba(0, 0, 0, 0.4);
        color: white;
    }

    .mainContainer {
        display: none;
    }
}