@font-face {
    font-family: 'Chalkboard SE';
    /*font-style: normal;*/
    /*font-weight: 400;*/
    /*font-display: block;*/
    src: url("../webfonts/chalkboard-se-regular.ttf") format("truetype");
}

*, h1, h2, h3, h4, h5 {
    font-family: "Comic Sans MS", "Chalkboard SE", cursive;
}

#content {
    margin-left: 200px;
}

.w3-strolchdark {
    background: #00000C;
    color: #e092b8;
}

.w3-strolchpink, label.w3-multiple-choice-checked, .w3-hover-strolchpink:hover, .w3-hover-strolchpink.active {
    background: #e092b8 !important;
}

.w3-strolchpink:hover, ul.w3-multiple-choice label.w3-multiple-choice-checked:hover {
    background: #d2619b !important;
}

.w3-strolchgray, ul.w3-multiple-choice label {
    background: #ccc;
}

.w3-strolchgray:hover, ul.w3-multiple-choice label:hover {
    background: #888 !important;
}

#logo {
    max-width: 100%;
}

.w3-form-container {
    margin-right: 120px;
}

/*.w3-display-topright .w3-button {*/
/*    margin-right: 1em;*/
/*}*/

.w3-form-bar-item {
    width: 100%;
    padding: 0 !important;
}

.w3-card, w3-card-4, .w3-ul {
    margin-bottom: 20px;
}

textarea {
    max-height: 85px;
    resize: none;
}


.switch {
    position: relative;
    display: inline-block;
    width: 40px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14.5px;
    width: 14.5px;
    left: 4px;
    bottom: 4px;
    background-color: #e092b8;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #d2619b;
}

input:focus + .slider {
    box-shadow: 0 0 1px #d2619b;
}

input:checked + .slider:before {
    -webkit-transform: translateX(17.5px);
    -ms-transform: translateX(17.5px);
    transform: translateX(17.5px);
}

.w3-bottombar {
    border-bottom: 6px solid #d2619b !important;
}

.w3-container.form {
    padding: 0;
}

.tablink {
    text-align: center;
}

.w3-hide, .w3-show {
    transition: display 2s;
}

.w3-bold {
    font-weight: bold;
}

ul.w3-multiple-choice {
    display: block;
    list-style: none;
    padding: 0;
}

input.w3-multiple-choice {
    display: none;
}

ul.w3-multiple-choice li {
    float: left;
}

ul.w3-multiple-choice li:last-child {
    float: none;
}

ul.w3-multiple-choice label {
    padding: 5px 10px;
    background: #ccc;
    margin: 0 5px;
    line-height: 2.5;
    border-radius: 10px;
    text-decoration: none;
}

.edit-form {
    margin: 5px;
}

.clip-title {
    margin-bottom: 0;
    font-size: small;
    color: gray;
}

.clip-title + p {
    margin-top: 0;
}

.clip-info {
    margin-right: 50px;
}

.clip-edit-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.clip-edit-buttons a {
    margin-bottom: 5px;
}

.clip-card {
    display: flex;
    flex-wrap: wrap;
}

.clip-thumbnail img{
    /*height: 272px;*/
    /*width: 480px;*/
    /*position: relative*/
    width: 100%;
}

.clip-thumbnail > span {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.2rem;
    padding: 5px;
    margin: 5px;
}

.clip-list {
    margin-top: 100px;
}



.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 4000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 800px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}