#faculty {
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
	padding-top: 10px;
	grid-column-gap: 50px;
	justify-content: center;
    background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #1f272b;
}

.course {
    border-bottom: 1px solid rgba(57, 255, 20, 0.5);
	border-left: 1px solid rgba(227, 177, 190, 0.5);
	border-right: 1px solid rgba(0, 255, 255, 0.5);
	border-top: 1px solid rgba(255, 49, 49, 0.5);
	display: block;
	width: 290px;
	text-align: start;
	padding-bottom: 10px;
	justify-self: center;
	background: transparent;
	position: relative;
   padding-bottom: 5px;


    
}
.credit {
    font-size: 16px;
    font-weight: 200;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 49, 49, 0.5);
    text-align: center;
}
.sub {
    padding-left: 20%;
    height: 20px;
    margin: auto;
}
.img-courses {
    width: 200px;
    height: 100px;
    object-fit: cover;
    position: relative;
    margin: auto;
    padding-top: 5px;
}
.outline {
    padding-top: 150px;
    padding-left: 2px;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    color: whitesmoke;
}
h3 {
    background-color: #c2c6cf;
	font-size: 1rem;
	margin-top: 0;
	height: 35px;
	padding-top: 5px;
	animation-name: trobone;
	animation-duration: 20s;
    text-align: center;
}
/* #not {
    background-image: url(../images/meetings-bg.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
} */
.footer {
    background-image: url(../images/meetings-bg.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0;
}
@keyframes trobone {
	from {background-color: #c2c6cf;}
	to {background-color: darkred;}
}
span {
    border-radius: 100vmax;
    position: absolute;
    }
    .top {
        top: 0;
        left: 0;
        width: 0;
        height: 5px;
        background: linear-gradient(90deg, transparent 50%, rgba(255, 49, 49, 0.5),rgb(255, 49, 49));
    }
    .bottom {
        right: 0;
        bottom: 0;
        height: 5px;
        background: linear-gradient(90deg, rgb(57, 255, 20), rgba(57, 255, 20, 0.5), transparent 50%);
    }
    .right {
        top: 0;
        right: 0;
        width: 5px;
        height: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(0, 255, 255, 0.5), rgb(0, 255, 255));
    }
    .left {
        left: 0;
        bottom: 0;
        width: 5px;
        height: 0;
        background: linear-gradient(180deg, rgb(227, 177, 190), rgba(227, 177, 190, 0.5), transparent 70%); 
    }
    .top {
        animation: animateTop 3s ease-in-out infinite;
    }
    .bottom {
        animation: animateBottomn 3s ease-in-out infinite;
   
    }
    .left {
        animation: animateLeft 3s ease-in-out infinite;
   
    }
    .right {
        animation: animateRight 3s ease-in-out infinite;
    }
   .feat {
       animation-name: feat;
       animation-duration: 4s;
       animation-direction: left;
   }
   @keyframes feat {
   
   }
    @keyframes animateTop {
        25% {
            width: 100%;
            opacity: 1;
        }
        30%,
         100%{
             opacity: 0;
         }
    }
    @keyframes animateBottomn {
        0%,
        50% {
            opacity: 0;
            width: 0;
        }
        75% {
   opacity: 1;
   width: 100%;
        }
        76%,
        100% {
            opacity: 0;
        }
    }
    @keyframes animateRight {
        0%,
        25% {
            opacity: 0;
            height: 0;
        }
        50% {
            opacity: 1;
            height: 100%;
        }
        55%,
        100% {
            height: 100%;
            opacity: 0;
        }
    }
    @keyframes animateLeft {
        0%,
        25% {
            opacity: 0;
            height: 0;
            bottom: 0;
        }
        
        
        
        55%, 
        100% {
            height: 100%;
            opacity: 1;
        }
    }
    button {
        width: min(100%, 280px);
        height: 30px;
        font-size: 1rem;
        font-weight: 500;
        color: transparent;
        background-color: transparent;
        border: 2px solid #a4146d;
        letter-spacing: 1.5px;
        box-shadow: 0 0 0 3px #a4146d;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: #a4146d;
        transition: all 200ms ease-in;
        cursor: pointer;
        margin: auto auto;
        padding-left: 10px;
    }
    button:hover {
        box-shadow: 0 0 0 2px #abd699;
        color: #abd699;
    }