/*
Antoine Egger
03.05.2023
StyleSheet of the Client
*/
@font-face {
    font-family: "Manuskript";
    font-style: normal;
    font-weight: normal;
    src: url("../font/manuskript-regular.woff") format("woff"),
    url("../font/manuskript-regular.ttf") format("truetype")
}

* {
    margin: 0;
    font-family: "Manuskript", "Georgia", "serif";
}

h1 {
    text-align: center;
    background-color: #999999;
}

body {
    background-color: #555555;
}

input[type="text"], input[type="password"] {

    background-color: rgba(0,0,0,0);
    background-image: url("../image/textfld.svg");
    background-position: 0 9px;
    background-size: 100% calc(100% - 18px);
    background-repeat: no-repeat;
    border: 0;
    color: #323335;
    font-size: 14px;
    left: 14px;
    letter-spacing: .075rem;
    line-height: 1.42857143;
    padding: 16px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: left;
    width: 10%
}

button {

    margin-top: 9px;
    font-size: 18pt;
    padding: 5px;
    color: #fff;
    border: none;
    background: url("../image/turquoise.svg#hover") 0 0/100% 100% no-repeat;
    cursor: pointer;

}
button:hover{
    background: url("../image/green.svg#hover") 0 0/100% 100% no-repeat;
}

#content {
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 40px;
}
#loginbtn{
    position: absolute;
    right: 10px;
}  
#registerbtn{
    position: absolute;
    right: 95px;
}
#disconnectbtn{
    position: absolute;
    right: 150px;
}
#accueilbtn{
    position: absolute;
    left: 25px;
}
#inventorybtn{
    position: absolute;
    right: 300px;
}
#status{
    position: absolute;
    right: 40px;
    color: #fff;
    top: 70px
}

.item{
    background-color: seashell;
    border: double black;
    font-size: 1.5em;
    text-align: justify;
    padding: 15px;

    margin: 20px;
}
.item.img{
    display: block;
    margin: auto;
    width: 480px;
    height: auto;
}
#createisle{
    margin: 15px;
    display: block;
}
