*{
    margin: 10px;
    box-sizing: border-box;
}

body {
    height: 95vh;
    background-color: rgb(254, 254, 254);
    font-family: sans-serif;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
}

header {
    /*background-color: darkolivegreen;
    padding: 1em 0 1em 0; */
    background-color: rgb(255, 255, 255);
    font-family: "sans-serif";
    font-size: 20px;
}

h1 {
    font-style: "sans-serif";
}

#logout-button {
    background-color: red;
    color: rgb(252, 252, 252);
    border-color: black;
    border: none;
    padding: 5px 10px;
    position:fixed;
    right:30px;
    top:30px;
    text-align:right;float:right;
  }
  

.right {
    background-color: rgb(255, 255, 255);
    padding: 2em 0 2em 0;
    flex: 2 2 100px;
    text-align: left;
}

.right h4{
    text-align: left;
}

.right h5{
    text-align: left;
}

.main {
    display: flex;
    flex: 1;
}

main {
    background-color: rgb(170, 203, 237);
    padding: 2em 0 2em 0;
    flex: 7 7 250px;
}

.main button {
    width: 50%;
    height: 90px;
    border: 1px solid;
    background: #0b0b0b;
    border-radius: 10px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

