* {
  margin: 0;
  padding: 0;
}
:root {
  --clr-dark: #0f172a;
  --clr-light: #f1f5f9;
  --clr-accent: #e11d48;
}

body {
  /* background: linear-gradient(#141e30, #243b55); */  
  height: 100vh; 
  background-repeat: no-repeat;
  background-attachment:fixed;
  background-position: center;
  /* background: #eee; */
}
nav {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  font-family: sans-serif;
  padding: 12px;  
  background: linear-gradient(#808080, #3fada8);
 
}
nav a {
  text-decoration: none;
  color: white;
}
hr
{
  margin: 0px;
  padding:0px
}
#Logo
{
  margin-left: 10px;
  border: 1px solid white;
  border-radius: 3px;
  padding: 3px 8px;

  font-size: 16px;
}
#Logo:hover
{
  color: #7f0a97;
  border: 1px solid rgb(173, 83, 23);

}
.list {
  display: flex;
  list-style: none;
  gap: 25px;
}
#toggler,
label {
  display: none;
}
label i {
  color: white;
}
.img-container
{
  width: 355px;
  height: 260px;
  margin: 40px auto;  
  background-repeat: no-repeat;
  /* background-color: #3fada8; */
  /* border: 2px solid brown; */
}
img
{
  width: 355px;
  background-repeat: no-repeat;
}
ul li{
  list-style:symbols(cyclic "\1F347");
}
li a 
{
transition: color 0.15s;
}

li a:hover
  {
    color: brown;
  }
  h3
  {
    text-align: center;
  }
  .job-notice
  {
    background-color: rgb(10, 102, 194);
    color:white;
    /* height: 400px; */
    width: 400px;    
    margin: 5px auto;
    overflow:auto;
  }
  .job-notice ul
  {
    margin:  15px 25px;
  }
  marquee
  {
    margin-top:6px;
    color: rgb(230, 233, 46);
    font-size: 17px;    
  }
  .highlight
  {
    color: rgb(240, 136, 110);    
  }
  .weblink
  {
    color:antiquewhite;
  }
  .weblink :hover
  {
    color:chartreuse;
  }
@media screen and (max-width: 650px) {
  .menu {
    width: 100%;
    max-height: 0;
    opacity: 0;
  }
  label {
    display: inline-flex;
  }
  #toggler:checked ~ .menu {
    max-height: 100%;
    opacity: 1;
  }
  .list {
    flex-direction: column;
    align-items: center;
    padding: 20px;   
  }
}
ul {
  text-decoration: none;
}
.container {
  display: flex;
  gap: 3em;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.cName
{
  color:rgb(122, 75, 12);
  font-weight: 200px;
}