*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: #00d4ff;
    text-decoration: underline;
}

.mainhead{
  display: grid;
  grid: 1fr / 3fr 1fr;


    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start, flex-end; */
}


.help{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}

img{
    width: 150px;
    height: 150px;
}

body{
    background: #1a1a2e;
    color: #eee;
}


.paragraph_small {
  background: linear-gradient(to right, #eee 20%, transparent 85%);
  background-clip: text;           /* standard (future-proof) */
  -webkit-background-clip: text;   /* WebKit (current browsers need this) */
  color: transparent;              /* hide original text color */
  -webkit-text-fill-color: transparent; /* Safari/Chrome specific */
}


/* CSS for the Register feature modal */

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
}

/* Add a background color when the inputs get focus */
input[type=text]:focus, input[type=password]:focus {
  outline: none;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
  width: 30%;
}

/* Add padding to container elements */
.container {
  padding: 16px;
}

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

/* Modal Content/Box */
.modal-content {
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
}

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

.clearfix{
    display: flex;
    justify-content: space-around;

}

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


/* Modal Input style */

input, select{
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #00d4ff;
    border-radius: 13px;
    font-size: 14px;
    width: 15em;
    background: #1a1a2e;
    color: #ffffff;
}