h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
}

.item {
    display: inline-block;
    background-color: white;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 5px 5px 20px rgb(200, 200, 200);
    border-radius: 30px;
    font-size: 20px;
    padding: 20px;
    word-wrap: break-word;
    height: auto;
    text-align: center;
    vertical-align: top; 
    margin: 20px;
}

.item p {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 150px;
}

.check-list {
    display: inline-block;
    width: auto;
    list-style: none;
    text-align: left;
    font-size: 16px;
}

.check-list li:before {
    content: "\2713\0020";
    color: rgb(0, 200, 0);
    font:bold;
    font-size: 25px;
}

.note-container {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.important-note {
    font-size: 20px;
    box-shadow: 5px 5px 20px rgb(200, 200, 200);
    border-radius: 20px;
    border: 3px solid rgb(255, 150, 150, 1);
    width: 80%;
    display: block;
    padding: 10px;
}

.detail-note {
    font-size: 20px;
    box-shadow: 5px 5px 20px rgb(200, 200, 200);
    /*background: linear-gradient(300deg, rgb(212, 162, 253),rgb(120, 171, 248) 100%);*/
    border-radius: 20px;
    border: 3px solid rgb(255, 255, 255, 1);
    width: 80%;
    min-height: 200px;
    display: block;
    padding: 10px;
}

.big-image {
    width: 100%;    
}

video {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .container {
        text-align: center;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 10px;
    }
}
  
@media screen and (min-width: 768px) {
    .container {
        text-align: center;
        width: 49%;
        display: inline-block;
        vertical-align: top;
    }
}