*{
    box-sizing: border-box;
    margin:0;
    font-family: 'Lucida Sans',Arial, Helvetica, sans-serif;
    background-color: #00061a;
    /* background-color: #00061a20; */
    color: white;
}

html{
    font-size: 16px;
}


#stiky{
    
    position: sticky;
    padding: 15px 10px;
    top: 0;
}

header h1 {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-style:oblique;
    
}

#container {
    
    margin : 0;
    width: 90vw;
}

header p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: inline-block;
    font-size: 0.75rem;
    margin-left:12px;
    font-style: italic;
    position: relative;
    top: 11px;
    right: 35px;
    white-space: nowrap;
}

form{
    margin: 10px 0 10px 0;
    
}

#vocabolo{
    width:55vw;
    /* min-width: 1100px; */
    background-color:#002ab3;
    font-size: 1.2rem;
}

select{
    position:absolute;
    top:45px;
    left:300px;
}

#wordsfound{
    margin: 10px 0 10px 10px;
    font-variant: small-caps;
    font-size: .77rem;
}

.wordcontainer{
    /* border-top: 1px solid white; */
    padding:10px;
    width: 75vw;
    /* min-width: 1100px; */
    min-width: 390px;
    margin-bottom: 20px;
    box-shadow: 1px 1px 4px ;
}

.wordhead{
    display: inline-block;
    padding: 0 30px 0 0;
}

.word{
    font-size:1.6rem;
    font-weight: bold;
    margin-bottom: 15px;;
}

.pos{
    font-size: .75rem;
    font-style: italic;
    
}

.phonetics{
    font-size: .75rem;

}

.wordbody{
    margin: 10px 0 10px 20px;
}

.def{
    font-size: 1.20rem;
}

.def::before{
    content: '-';
}

.syn{
    font-size: 0.75rem;
}

.example{
    font-style: italic;
    font-size: .875rem;
    text-align: right;
}


footer{
    
    font-size:11px;
    text-align: left;
    position: fixed;
    max-width: 160px;
    min-width: 105px;
    bottom: 6vh;
    right: 6vw;
    /* left: 70vw; */
    

}

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

    html{
        font-size: 21px;
    }

    header p {
        position: absolute;
        top: 80px;
        left: 125px;
    }

    footer{
        display:none;
    }
    
}