body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    justify-content: center;
    color: #333;
    padding: 12px;
}

.container {
    position: relative;
    width: 80%;
    padding: 20px;
    min-height: 200px;
}


.ur-image {
    position: relative;
    top: 10px;
    right: 10px;
    width: 400px;
}

#logo {
    font-size: 32pt;
}

.techniques {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(auto-fit, 50px);
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    align-items: center;
}

.search_area {
    margin: 12px;
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.techproj {
    padding: 12px 0px 12px 0px;
}

header {
    padding:20px 20px 20px 12px;
    background-color: lightgray;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

footer {
    padding: 20px 20px 20px 12px;
    background-color: lightgray;
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    
    
}

.btn {
  background-color: #008CBA;  /* Simple blue */
  color: white;               /* White text */
  padding: 0.5rem 1rem;       /* Comfortable padding */
  border: 1px solid #007B9E;  /* Slight border */
  border-radius: 4px;         /* Rounded corners */
  font-size: 1rem;            /* Default size */
  cursor: pointer;            /* Pointer on hover */
  text-align: center;          /* Center text */
  display: inline-block;       /* Allow width adjustments */
  text-decoration: none;       /* Remove underline if used on <a> */
}

/* Hover state */
.btn:hover {
  background-color: #007B9E;
}

/* Active state */
.btn:active {
  background-color: #006A85;
}

/* Focus state */
.btn:focus {
  outline: 2px solid #005f73;
  outline-offset: 2px;
}
