#body{
    background: url('/static/media/coding_bg.jpg') repeat-y fixed; 
    color: white;
    background-size: cover;  
    background-color: rgb(48, 48, 48); 
    text-shadow: 0 0 5px black;
}

#canvas{
    margin: 2.5rem;
    color: white;
}

#user-name{
    text-shadow: black 2;
    color: white;
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1;
}

#user-name > span {
    font-size: 3.5rem;
}

#contact-me{
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    width: 20%;
}

#aboutme{
    display: flex;
    width: 85%;
    margin: auto 0 2.5rem auto;
}

#user-pic{
    border-radius: 0.5rem;
    width: 15rem;
    object-fit: cover;
    margin-left: 3rem;
}

#aboutme>p{
    font-size: 1.5rem;
    align-self: center;
    text-align: justify;
}

.exPic {
    box-shadow: rgba(163, 182, 202, 0.425) 0px 0px 3px;   
    width: 60%; 
    object-fit: contain; 
}

.examples{
    display: flex; 
    width: 80%; 
    height: 300px;
    justify-content: space-between;
    background-color: rgba(70, 78, 95, 0.658);
    border-radius: 5px;
}

.left-move{
    margin: 15px auto 25px 30px; 
}

.index-p{
    font-size: 1.5vw; 
    margin: auto 10px;
    padding: 5px;
    text-align: justify;
    
}

.file-upload-container {
    width: 250px;
    height: 50px;
    overflow: hidden;
    background: #3F51B5;
    user-select: none;
    transition: all 150ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    text-align: center;
    color: white;
    line-height: 50px;
    font-weight: 300;
    font-size: 20px;
    padding: auto;
    border-radius: 3px;
    vertical-align: middle;

}
.file-upload-container:hover {
    cursor: pointer;
    background: #3949AB;
}

input, textarea{
    height: 150%;
    color: black;
    padding: 0px 5px;
}


/* *{
    border: 1px black solid;
} */

@media only screen and (max-width: 860px){
    #aboutme{
        display: flex;
        width: 95%;
        margin: 15px auto;
    }

    #aboutme>p{
        font-size: 3vw;
        text-align: justify;
        margin: auto 10px;
    }

    #user-pic{
        border-radius: 0.5rem;
        width: 30vw;
        object-fit: cover;
        margin: auto;
    }
}


@media only screen and (max-width: 622px){
    #body{
        background: url('/static/media/coding_bg.jpg') repeat-y fixed; 
        color: white;
        background-size: cover;  
        background-color: rgb(48, 48, 48); 
        text-shadow: 0 0 5px black;

    }
    #canvas{
        margin: 0.5rem;
        color: white;
        width: 95%;
        margin: auto;
    }

    #contact-me{
        font-size: 2rem;
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }
    #user-name{
        text-shadow: black 2;
        color: white;
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 1;
        text-align: center;
        margin-top: 20px;
    }

    #user-name > span {
        font-size: 3.4rem;
    }
    
    #aboutme{
        display: block;
        width: 95%;
        margin: 15px auto;
    }

    #aboutme>p{
        font-size: 1rem;
        text-align: justify;
    }

    #user-pic{
        border-radius: 0.5rem;
        width: 15rem;
        object-fit: cover;
        margin: auto;
    }

    .exPic {
        box-shadow: rgba(163, 182, 202, 0.425) 0px 0px 3px;   
        width: 100%; 
        object-fit: contain; 
    }

    .examples{
        display: block; 
        width: 90%; 
        margin: auto;
        height: fit-content;
        background-color: rgba(70, 78, 95, 0.658);
        border-radius: 5px;
    }

    .left-move{
        margin: auto
    }

    .index-p{
        font-size: 1rem; 
        margin: auto;
        text-align: justify;
        padding: 5px;
    }

}



#weather{
    background: url('/static/media/cloudy_sky.jpg') repeat-y fixed; 
    background-size: cover;  
    background-color: rgb(48, 48, 48); 
}

.small-font{
    font-size:0.75em;
    overflow:hidden;
}

#weather-data{
    margin: 0.25rem auto;
    background-color: rgba(180, 180, 221, 0.664);  
    width: 40%;
    padding: 0.25rem 1.25rem;
    display: flex; 
    justify-content: space-between;  
}

#weathercontainer{
        margin: 2.5rem auto; 
        width: 50%;
        padding: 0;
        /* border: 1px solid red; */
    }

@media only screen and (max-width: 800px){
    #weather-data{
        width:90%;
    }

    #weathercontainer{
        width:95%;
        padding: 0;
    }


}

#content-task{
    display: flex;
    justify-content: space-evenly;
    width: 83%;
}

#add-new-task{
    display: flex; 
    justify-content: space-between; 
    padding: 20px; 
    background-color: rgba(127, 161, 224, 0.336); 
    width: fit-content; 
    height: fit-content;
}

#task-container{
    width: 80%;
}

@media only screen and (max-width: 700px){
    #add-new-task{
        width: 100%;
        margin: auto;
        padding: 0;
    }

    #add-new-task > form {
        padding: 20px; 
        background-color: rgba(127, 161, 224, 0.336); 
        width: 100%; 
        margin: auto;
    }

    #content-task{
        display: block;
        /* justify-content: space-evenly; */
        width: 100%;
        margin: auto;

    }

    #content-task > #task-container{
        margin: 10px auto;
        width: 100%;

    }
}


