body {    
    margin-left: 160px;
    margin-right: 76px;
}
::-webkit-scrollbar {
    display: none;
}
#inputBox {
    width: 600px;
    height: 44px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);
    border-radius: 24px;
    margin: 0 auto;
    padding-left: 22px;
}

::placeholder {    
    font-size: 16px;
}

input[type=text] {
    color: #202124;
    font-size: 16px;
    font-family: arial, sans-serif;    
}

input:focus {
    outline: none;
}

#searchBtn {
    margin-left: 25px;
    margin-left: 25px;
    padding: 9px 17px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #7d7d7d;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: none;
}

a {
    text-decoration: none;
    color: #1a0dab;
}

.search-result-element {
    margin-top: 20px;
}

.flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;    
}

.icon {
    background-color: #f1f3f4;
    border: 1px solid #dadce0;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    margin-right: 15px;
}

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }
    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.skeleton-domain {
    height: 14px;
    width: 8vw;
    border-radius: 0.25rem;
    margin-bottom: 1px;
}

.skeleton-link {
    height: 12px;
    width: 15vw;
    border-radius: 0.25rem;
}

.skeleton-heading {
    height: 20px;
    width: 30%;
    border-radius: 0.25rem;
}

.skeleton-description {
    height: 14px;
    width: 100%;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.domain {
    color: #202124;
    font-size: 14px;    
    font-family: arial, sans-serif;    
}

.link {
    font-size: 12px;    
    font-family: arial, sans-serif;
    color: #4d5156;
}

.heading-div {
    margin-bottom: 10px;
}

.heading {
    font-family: arial, sans-serif;
    font-size: 20px;
    font-family: 400;    
}

.heading:hover {
    text-decoration: underline;
}

.heading:visited {
    color: #681da8;
}

.description {
    color: #4d5156;
    font-family: arial, sans-serif;
    font-size: 14px;    
}
/* Basic button style */

  
  /* Hover effect */
  #searchBtn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
  }
  
  /* Active/focus state */
  #searchBtn:focus,
  #searchBtn:active {
    outline: none;
    background-color: #000000;
    color: #fff;
    border-color: #555;
  }
  