

:root{
    --grey: #8b8b8b;
    --offWhite: #d5d5d5;
}


*{
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    color:white;
}
h1{
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 2.5rem;
}
body{
    margin: 0;
    background-image: url("bodyBack.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}
.main-section{
    padding: 0 4rem;
    position: relative;
    z-index: 10;
}
.container{
    background-image: url("bg1.jpg");
    display: flex;
    margin: 4rem auto;
    max-width: 60%;
    min-height: 80vh;
    box-shadow: 0 40px 40px -10px var(--grey);
}

label{
    font-weight: 400;
    border-bottom: 1px solid;

}

input{
    border: none;
    border-bottom: 1px solid var(--offWhite);
    background-color: transparent;
    width: 50%;
    margin-bottom: 1rem;
}
button{
    display: block;
    background-color: var(--offWhite);
    color: black;
    border: none;
    padding: 0.5rem 2rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--offWhite);
}
.output{
    margin-top: 2rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.section .sadTheme{
    background-image:url("tenor.gif");
    background-size: 100% 100%;
}

.section .happyTheme{
    background-image:url("happy.gif");
    background-size: 100% 100%;
}



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

    .displayFlex{
        display: block;
        max-width: 100%;
        min-height: 50vh;
        box-shadow: 0 40px 40px -10px var(--grey), 0 -40px 40px -10px var(--offWhite);
    }


    label{
        display: inline-block;
        border: none;
        margin-bottom: 1rem;
    }

    .main-section{
        padding: 0 1rem;
    }
}
