.container {
    width: 90%;
    max-width: 900px;
    margin: 50px auto 60px auto;
}
input{
  font-family: inherit;
  font-weight: inherit;
}
.container input {
    width: 90%;

}

body {
    text-align: center;
    font-family: 'Lato','Helvetica','Arial';
    font-weight: bold;
}

#current_queue {
    display: inline-block;
    width: 100%;
    margin: 0;
}

.queue-member {
    margin: 20px;
    border: 3px;
    border-color: rgb(0, 75, 75);
    border-radius: 10px;
    border-style: solid;
    height: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.queue-member p{
    vertical-align: middle;
    max-width: 60%;
    float: left;
    white-space: nowrap;
    overflow: hidden;
}
.left{
    float: left;
    margin-left: 5px;
    margin-right: 10px;
}

.date{
    font-size: x-small;
    vertical-align: middle;
}

#footer{
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0% 0%;
    position: fixed;
    bottom:0;
    left: 0;
    right:0;
    height: 50px;
    box-sizing: border-box;
    margin: auto auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: inherit;
}

#footer input{
    display: inline-block;
    vertical-align: middle;
}
.remove {
    background-color: rgb(206, 24, 0);
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    float: right;
    height: 54px;
    border-style: solid;
    border-color: rgb(0, 75, 75);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin: -2px;

}
.quit {
    background-color: rgb(206, 24, 0);
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    height: 100%;
    width: 100%;
}

.send, .dequeue {
    background-color: rgb(0, 170, 28);
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    height: 100%;
}

.ad{
    position: absolute;
    right: 0px;
    height: 40px;
    width: 150px !important;
    background-color: rgb(206, 24, 0);
}

#dequeue {
    margin-top: 100px;
}
#logout{
    top: 0px;
}

#change{
    top: 0px;
    right: 155px;
    width: auto !important;
}

#close{
  top: 45px;
}

#leave{
  top: 90px;
}

.name{
    margin: 10px;
    height: 30px;
}

.rooms{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 15px;
    justify-items: center;
    width: calc(100% - 15px);
    max-width: 800px;
    margin: auto;
    align-content: space-evenly;
}

.room{
    white-space: normal;
    width: 100% !important;
    border: 2px;
    border-radius: 10px;
    min-height: 80px;
    font-size: 24px;
    background-color: rgb(84, 111, 128);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
    text-shadow: 0 0 3px rgb(124, 124, 124);
}

h1 {
    min-width: 320px;
}
.bye{
    font-size:30px;
}

.container fieldset{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}