/*------------body, main, footer-------------*/
body{
    font-family: 'tahoma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff !important;   
}
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
   h1 {
    font-size: 36px;
    text-align: center;
  }
   h2 {
    font-size: 24px;
  }
  h3{
    font-size: 13;
  }
  h4{
    font-size: 14;
    text-align: center;
  }
   ul {
    list-style: disc;
    margin-left: 30px;
  }
   li {
    margin-bottom: 8px;
  }
   p {
    margin-bottom: 16px;
  }
* {
    box-sizing: border-box;
}

main{
    padding: 0px;
    margin: auto;
    overflow: auto;
}

footer{
    padding: 10px;
    color: white;
    text-align: center;
    background-color: #749bff;
}
/*--------------------body, main, footer---------*/

/*--------------------flex-----------------*/
.container {
    display: flex;
    width: 85%;
    height: auto;
    padding: 10px 0px 10px 0px;
    margin: auto;
    border-radius: 10px;

}
.card{
    box-shadow: 0 1px 20px 0 rgb(79 90 100 / 8%);
    border-radius: 0px;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #fff;
    margin: 10px 10px 5px 5px;
    width: 100%;
    
}
.card a{
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: #4285F4;
}
.tabel-diagnosa {
    margin: 0 auto;
    width: 80%;
}
.btn-biruu {
    background: #4285F4;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: block; /* Untuk membuat tombol menjadi blok agar dapat memanipulasi margin dan padding */
    margin: 20px auto; /* Untuk memposisikan tombol di tengah halaman */
    cursor: pointer;
}
/*-------------------------card----------------*/

/*--------------------header & nav-------------*/

header{
    display: inline;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    position: sticky;
    top: 0;
}
nav a{
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #454545;
}
nav li{
    display: inline;
    list-style-type: none;
    margin-right: 20px;
}
header nav a img {
    margin-right: 10px;
    height: 40px;
}
/*-------------header & nav----------------------*/

/*------------Intro-------------*/
#intro-text{
    float: left;
    width: 50%;
}

#intro-text h1{
    font-size: 4rem;
    margin: 0px 0px;
    color: #fff;
}
#intro-image{
    float: right;
    width: 50%;
    padding-left: 20px;
}
#intro{
    background-color: #749bff;
    padding: 30px;
    display: flex;
}

.profile-image{
    width: 100%;
    height: 550px;
    object-fit: contain;
    object-position: top;
}
/*--------- intro --------*/
/*--------- blog --------*/
#blog{
    background-color: #f6f9fc;
    padding-top: 30px;
}
.item { 
    width: 400px; 
    height: 400px; 
  } 

.blog-desc{
    padding: 10px 10px 10px 10px;
}

.blog-image{
    width: 100%;
    height: 300px;
    object-fit: scale-down;
    object-position: center;
}

/*-------- Blog ---------*/
/*-------- Form Kontak ---------*/
input[type="text"], textarea{
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 14pt;
    margin: 6px 0px;
    width: 80%;
}
/*--------form untuk kontak--------*/
/*---------text & margin ---------*/
.judul{ color: #749bff; font-size: 2rem; font-weight: 100;}

.teks-tengah{ text-align: center !important;}
.teks-kiri{ text-align: left !important;}
.teks-kanan{ text-align: right !important;}
.txtbiru {color: #007bff !important;}
.txtungu {color: #563d7c !important;}
.text-putih{ color: #fff !important;}

.btn-putih{
    background-color: #fff !important;
    color: #444444 !important;
    padding: 15px;
    border: none;
    border-radius: 4px;
}

.btn-biru{
    background-color: #749bff !important;
    color: #fff !important;
    padding: 15px;
    border: none;
    border-radius: 4px;
    place-items: center;
}
/*-------- text & margin--------*/

/*-------media query---------*/
@media screen and (max-width: 720px) {
    main{
        padding: 10px 10px 10px 10px;
    }
    .container{
        flex-direction: column;
    }
    #intro-text h1{
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    #intro{
        display: flex;
        flex-direction: flex;
    }
    #intro-image{
        width: 100px;
        height: 100px;
    }
    #intro-text{
        width: 50%;
        float: left;
    }
    .profile-image{
        width: 100%;
        height: 200px;
        object-fit: contain;
        object-position: top;
    }
}
/*-------- media querry------------*/

/*combo box*/
.list {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #3a3a3a;
    text-align: center;
    width: 100%;
    max-width: 250px;
    cursor: pointer;
  }
  
  .list option {
    background: #fff;
    color: #3a3a3a;
    border-bottom: 1px solid #d9d9d9;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .list option:last-child {
    border-bottom: none;
  }