
.faq {
	width: 60%;
	margin-left: 20%;
	/* align-items: center; */
	/* justify-content: center; */
	display: grid;
	margin-bottom: 30px;
}

.faq-label {
	display: block;
	text-align: center;
	font-size: 50px;
}

.faq-text {
	border: 1px solid white;
	font-size: 24px;
	padding: 20px;
}


.course {
  width: 90%;
  margin-left: 5%;
}

.course-header {
    font-size: 50px;
    overflow: hidden;
     border: 2px solid transparent;

    border-image: linear-gradient(
    to right top,
    orange -10%,
    transparent 30%
    ) 1;
    padding: 20px;
}


.course-arrow {
    display: inline-block;
    border: 5px solid cyan;
    margin-right: 20px;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    width: 0px;
    height: 0px;
    font-size: 36px;
  transition: 0.2s;
  opacity: 0;
}

.course-name {
    display: inline-block;
}

.course-contents {
  width: 100%;
  display: none;
  border: 2px solid transparent;
  border-image: linear-gradient(
    to right,
    orange -10%,
    transparent 60%
    ) 1;
    border-top-width: 0;
    padding: 20px;
}

.course-header:hover .course-arrow {
  opacity: 1;
}

.course-header[clicked="1"] {
  border-bottom-width: 0;
}

.course-header[clicked="0"] {
  border-bottom-width: 2px;
}
 
.course-header[clicked="1"] .course-arrow {
  opacity: 1;
  border: 12px solid rgb(0, 133, 133);
}

.course a {
	text-decoration: none;
}

.download, .password {
	display: inline-block;
	margin-top: 20px;
	margin-left: 20px;
	background-color: white;
	color: black;
	padding: 10px 25px 10px 25px;
	width: 150px;
	text-align: center;
	transition: 0.2s;
}

.download:hover, .password:hover {
	background-color: rgb(196, 196, 196);
}

.download:hover:active, .password:hover:active {
	background-color: #1a1a1a;
}


