body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.main-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

.container{
    display: flex;
    justify-content: flex-end;
    background-color: #1e90ff;
    color: #fff;
    padding: 20px;
  }

  .imgslide{
    width: 90%;
    text-align: center;
  }

  .button-slide{
    margin: 10px;
    margin-left: 60px;
  }

  .button1{
    width: 70px;
    height: 30px;
    background-color: #1e90ff;
    border: none;
    color: white;
    border-radius: 2px;

  }

  .button2{
    width: 70px;
    height: 30px;
    background-color: grey;
    border-radius: 2px;
    border: none;
    color: white;
  }
  
  .home{
    margin: 0 10px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  
  .home:hover {
    color: black;

  }
  
  /* Gaya untuk form */
  .form-container {
    width: 45%;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
  }
  
  .form-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .form-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .form-container input[type="text"],
  .form-container input[type="date"],
  .form-container textarea {
    width: 85%;
    padding: 10px;
    margin: 10px 20px 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .form-container input[type="radio"] {
    margin-right: 10px;
  }
  
  .form-container textarea {
    height: 100px;
  }
  
  .form-container input[type="submit"] {
    width: 100%;
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .form-container input[type="submit"]:hover {
    background-color: #fff;
    color: #1e90ff;
  }

  .radio-container label {
    display: inline-block;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
  }
  
  /* Gaya untuk hasil */
  .result-container {
    width: 45%;
    height: 500px;
    margin: 50px auto;
    padding-left: 20px;
    border-left: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }

  .form-container input[type="submit"] {
    width: 100%;
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .result-container p {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .header{
    padding-left: 30px;
    margin-bottom: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
  }
  .result-container span {
    font-weight: bold;
  }


  .image-content{
    display: flex;
    align-items: center;
    justify-content: center;

  }

  h3{
    padding: 20px;
    padding-left: 60px;
  }

  .imagee{
    border-radius: 50%;
    width: 200px;
    height: 200px;
  }

  .footer{
    width: 100%;
    height: 50px;
    position: absolute;
    align-items: center;
    text-align: center;
    line-height: 25px;
    background-color: black;
    color: white;
  }
    @media only screen and (max-width: 600px){

        .header-wrapper{
            flex-direction: column;
            display: flex;
        }
        .main-content{
          display: grid;
        }

        .form-container {
          width: 100%;
          margin: 50px auto;
          padding: 20px;
          border: 1px solid #ddd;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          background-color: #f5f5f5;
        }

        .content-facilitation{
          width: 100%;
          display: flex;
          flex-direction: column;
        }

        .image-content{
          display: grid;
        }

        .result-container {
          width: 100%;
          height: 500px;
          margin: 50px auto;
          padding-left: 20px;
          border-left: 1px solid #ccc;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          background-color: #fff;
        }
      
        .container{
            flex-direction: column;
            display: flex;
            align-items: center;
            border: 1px solid;
        }
        .home{
            margin: 10px;
            width: 100%;
            align-items: center;
            padding: 5px;
            border-bottom: 1px solid black;
        }

        .header{
          padding-left: 5px;
          margin-bottom: 0;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
          font-size: 15px;
          margin-left: 10px;
        }

        
    }