html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f8b034 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

main {
    width: 100%;
}

.content {
    display: grid;
    margin: 0 auto;
    width: 30%;
    padding: 1.5rem 2rem 3rem 2rem;
    background-color: #f2f2f2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

button {
    background: #dfb355;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    margin: 0.5rem 0;
}

.button-container {
    width: 80%;
    justify-self: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
}
  
.modal-content {
    background-color: #f2f2f2;
    margin: auto;
    padding: 20px;
    border: none;
    width: 25%;
    border-radius: 5px;
}

.modal-content #session-code {
    text-transform: uppercase;
}
  
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#flashbag-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 20%; 
    max-width: 50%; 
    width: auto; 
    position: fixed; 
    top: 15%;
    right: 0%; 
    z-index: 1;
    background-color: #D72638;
    color: white;
    border-radius: 5px;
    padding: 0.25rem 1rem;
}

#flashbag-container .close {
    color: white;
}

@media only screen and (max-width: 900px) {
    .content {
        width: 90%;
    }

    .modal-content {
        width: 80%;
    }
}