.nav-link:visited{
    opacity: 1;
   }
  .nav-link:hover{
  color: #EC3963;
  }

#page {
    width: 100%;
    height: 100%;
}

/* fonts start */
.kanit {
    font-family: Kanit; /*google font import*/
}

.roboto {
    font-family: "Roboto Mono", serif; /* google font import */
}
/* fonts end */

/* colors start */

/* pink */
.pink {
    background-color: #EC3963;
}

/* blue */
.blue {
    background-color: #46A9D3;
}

/* purple */
.purple {
    background-color: #BB67A3;
}

/* colors end */

/* text boxes styling start */
.text-boxes {
    text-align: center;
    box-shadow: 7px 7px 2px lightgray; /*box shadow under each text box*/
}
/* text boxes styling end */

/* footer styling */
#sticky {
    position: fixed;
    bottom: 0;
}
/* footer styling end */

/* log in start */

/* input for log in */
input {
    display: block;
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-control {
    width: 50%;
}

/* log in button */
.log {
    padding: 10px 20px;
    border: none;
    background: linear-gradient(45deg, #EC3963, #BB67A3, #46A9D3);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    width: 20%;
}

/* hover over the log in button */
.log:hover {
    background: #EC3963;
}

/* text displayed for successful/unsuccessful log in */
p {
    color: red;
    font-weight: bold;
}

#bod {
    padding: 0;
    overflow: hidden;
     /* Prevents any accidental scrolling */
}
/* log in end */