body{
    background-color:#F5F5DC;
}

footer{
    color:black;
    padding-top:350px;
    padding-bottom:10px;
    text-align:center;
    font-family:Impact;
}

 /*This will take out the purple link decoration*/
footer a{
    color:black;
    margin:5px;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

.header{
    left:0px;
    position:fixed;
    width:100%;
    min-height:120px;
    text-decoration:none;
    font-family:Impact;
    background-color:#654321;
    color:white;
    text-shadow: 2px 2px #000000;
}

.header h1{
    padding-left:55px;
}

nav{
    padding-left:15px;
    margin-left: 20px;
    margin-top:20px;
}

nav a{
    border-radius:8px;
    text-decoration:none;
    color:white;
    padding:20px;
    margin-left: 20px;
}

.header a:hover{
    background:rgba(211, 211, 211, 0.5);
    color:white;
    text-decoration:underline;
    min-height:20px;
    animation-name:header;
    animation-duration: 0.5s;
}

.gif{
     display: block;
  border: 10px inset #FFFFFF;
  margin-top:100px;
  transition-timing-function:ease;
    transition: width 1.5s, height 1.5s;
    animation-duration:1.5s;
    animation-iteration-count: infinite;
}


#colorchanger{
    animation-name:rollcolors;
    animation-duration: 4s;
    animation-iteration-count: 100;
    animation-direction:alternate;
}
.gif:hover{
    width:400px;
    height:400px;
    transition-timing-function:ease;
    transition: width 1.5s, height 1.5s;
    animation-name:gifcolors;
    animation-duration:1.5s;
    animation-iteration-count: infinite;
}

@keyframes gifcolors{
    0% {border-color: red;}
    15% {border-color: orange;}
    30% {border-color: yellow;}
    45% {border-color: green;}
    60% {border-color: blue;}
    75% {border-color: indigo;}
    100% {border-color: purple;}
}

@keyframes header{
    0% {background:rgba(211, 211, 211, 0);}
    10% {background:rgba(211, 211, 211, 0.05);}
    20% {background:rgba(211, 211, 211, 0.1);}
    30% {background:rgba(211, 211, 211, 0.15);}
    40% {background:rgba(211, 211, 211, 0.2);}
    50% {background:rgba(211, 211, 211, 0.25);}
    60% {background:rgba(211, 211, 211, 0.3);}
    70% {background:rgba(211, 211, 211, 0.35);}
    80% {background:rgba(211, 211, 211, 0.4);}
    90% {background:rgba(211, 211, 211, 0.45);}
    100% {background:rgba(211, 211, 211, 0.5);}
}



.highlight{
    background-color:#FFFDD0;
}

.text{
    font-family:Impact;
}

figcaption{
    width: 400px;
    font-size:15px;
    font-family: Impact;
}

.project{
    font-size:30px;
    text-align:center;
}

.content{
    padding-top:150px;
    text-align:left;
}

#cap1{
    padding-top:150px;
}

.dark-mode{
    background-color:#393D47;
    color:white;
}

#dark{
    border:none;
    float:right;
    font-family: Impact;
}

.na{
    margin-top:300px;
}

.chatroomregister{
    text-align:center;
    padding-top:300px;
}

.chatroomlogin{
    text-align:center;
    padding-top:300px;
}

table{/* This is for the table in the chatroom */
    border: 1px solid black;
    width:80%;
    margin:auto;
    
}

th:first-child {  /* This is for the first header in the table */
    width:10%;
    background-color: #eeeeee;
}
  
th:nth-child(2) { /* This is for the second header in the table */
    width:90%;
    text-align: left;
    padding-left: 3%;
}

td:first-child {  /* This is for the first column in the table */
    width:10%;
    background-color: #eeeeee;
    text-align: left;
    padding-left:20px;
}
  
td:nth-child(2) {  /* This is for the second column in the table */
    width:90%;
    text-align: left;
    padding-left: 3%;
}

.chatroomtext{  /* This is for the Welcome and the textbox to enter a msg*/
    width:80%;
    margin:auto;
    text-align: left;
    padding-top:300px;
}

@import url('https://fonts.googleapis.com/css2?family=Popping:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 48
}

.wrapper{
    width: 600px;
    background-color: #FFF;
    margin-top:200px;
    display: flex;
    min-height: 100px;
    border-radius: 10px;
    
}

.wrapper header{
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
}

.calendar{
    padding: 20px;
    width: 100%;
}

.calendar ul{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    text-align: center;
}

.calendar .days{
    margin-bottom: 20px;
}

.calendar .weeks li{
    font-weight: 500;
        font-weight: bold;
}

.calendar .days li{
    cursor: pointer;
    margin-top: 30px;
    z-index: 1;
}

.days li.inactive{
    color:#aaa;
}

.days li.active{
    color:#fff;
}

.calendar ul li{
    position: relative;
    width:calc(100%/7);
}

.calendar .days li::before{
    position: absolute;
    content: "";
    height: 40px;
    width: 40px;
    top:50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

.days li:hover::before{
    background:#F2F2F2;
}

.days li.active::before{
    background:#654321;
}

header .current-date{
    font-size: 1.45rem;
    font-weight: 500;
    width: 100%;
}


header .icons span{
    height: 38px;
    width: 38px;
    color: #878787;
    font-size: 1.9rem;
    margin: 0 1px;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    border-radius: 50%;
}

header .icons span:hover{
    background: #F2F2F2;
}

header .icons span:last-child{
    margin-right:-10px;
}

.caltitle{
    width:10%;
    float: left;
}

#back{
    margin-top:10px;
    cursor:pointer;
}

#edit{
    cursor:pointer;
}

#eventlist{
    margin-top:20px;
    margin-left:20px;
    margin-bottom:20px;
    text-align:left;
}