/* Set a style for all buttons */

/* Extra styles for the cancel button */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn {
float: left;
width: 50%;
}

/* Add padding to container elements */
.container {
padding: 16px;
background-color:#2E2E2E;
height:240px;
font-size:12px;  
}

/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 99; /* Sit on top */
left: 0;
top: 0;
width: 30%; /* Full width */
margin: 0 auto;
overflow: auto; /* Enable scroll if needed */
background-color: #2E2E2E;
padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
background-color: #2E2E2E;
margin: 0 auto; /* 5% from the top, 15% from the bottom and centered */
border: 0px solid gray;
width: 90%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
position: absolute;
right: 35px;
top: 15px;
font-size: 40px;
font-weight: bold;
color: #f1f1f1;
}

.close:hover,
.close:focus {
color: #f44336;
cursor: pointer;
}

/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
  }
}
