@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');

/* Sets the background color of the body to blue. Sets font to Rubik */

body {
  background-color: #0A2344;
  font-family: 'rubik', sans-serif;
}

/* Aligns the heading text to the center. */


/* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */

.accordion {
  width: 800px;
  margin: 90px auto;
  color: black;
  background-color: white;
  padding: 45px 45px;
}

.accordion .container {
  position: relative;
  margin: 10px 10px;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
  position: relative;
  padding: 10px 0;
  font-size: 20px;
  color: black;
  cursor: pointer;
}

/* Positions the plus sign 5px from the right. Centers it using the transform property. */

.accordion .label::before {
  content: '+';
  color: black;
  position: absolute;
  top: 50%;
  right: -5px;
  font-size: 15px;
  transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
  position: relative;
  background: #262626;
  height: 0;
  font-size: 14px;
  text-align: justify;
  width: 780px;
  overflow: hidden;
  transition: 0.5s;
  color:gold;
 
}

/* Adds a horizontal line between the contents */

.accordion hr {
  width: 100%;
  margin-left: 0;
  border: 1px solid grey;
}
/* Unhides the content part when active. Sets the height */

.accordion .container.active .content {
  height: 950px;
}

/* Changes from plus sign to negative sign once active */

.accordion .container.active .label::before {
  content: '-';
  font-size: 30px;
}
@media only screen and (max-width: 600px) {
  body {
    background-color: green;
	  width: 60%;
	  background-color: #000000;
	  color:#fff;
  }
  .accordion {
  width: 600px;
  margin: 90px auto;
  color: black;
  background-color: white;
  padding: 45px 45px;
}

  
}
/* For mobile phones: */
[class*="col-"] {
  width: 60%;
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 { width: 8.33%; }
  /* ... other column widths ... */
  .col-12 { width: 100%; }
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 { width: 8.33%; }
  /* ... other tablet column widths ... */
  .col-s-12 { width: 100%; }
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 { width: 8.33%; }
  /* ... other desktop column widths ... */
  .col-12 { width: 100%; }
}
