body{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0px;
    background-image: url('Images/backgroundfinal.jpg');
    background-size: cover;
    overflow-x:hidden;
    font-family: 'Itim', cursive;

}

nav{
    display: flex;
    width: 100vw;
    height: 100px;
    background-color:black;
}

nav h1{
    color: white;
    text-align: center;
    font-size:34px;
    flex:1;
}

#implementation{
    display: flex;
    justify-content: flex-end;
    width: 90vh;

}

#logo{
    width:100px;
}

main{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    width:100vw;
}
#button{
    height: 50px;
    padding: 10px;
    margin: 10px;
    margin-right:2px;
    min-width:100px;
    width: max-content;
    border-radius: 10px;
    background-color: rgb(90, 168, 93);
    color:white;
    text-shadow: 12px 12px 12px 12px black;
    font-weight: 600;
    border: 2px solid black;

}

#box{
    resize: none;
    overflow: hidden;
    width: 90%;
    height: 253.6px;
    min-height: 300px;
    font-size: 1.6rem;
    padding: 10px;
    overflow-wrap:break-word;
    font-family: 'Itim', cursive;
}

#answer{
    width: auto;
    margin:20px 20px 20px 20px;
    color: white;
    padding : 20px;
    height: fit-content;
    background-color:rgba(0,0,0,0.7);
    border-radius:10px;
}

#footer{
    display:none;
}

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

    #footer{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 45px;
        background-color: black;
        color:white;
        padding-right:10px;
    }

    #implementation{
        display: flex;
        justify-content: flex-end;
        width: 95%;
    
    }

    #box{
        font-size: 1.2rem;
    }
    
}