/* Main and body styles*/
body {
    background-color: rgba(170, 175, 172, 0);
}
main {
    padding-top: 20px;
    padding-bottom: 100px;
    margin-left: 500px;
    padding-left: 10px;
    padding-right: 10px;

    border-style: groove;
    border-radius: 40px;
    border-color: black;
    width: 430px;
    background-color: rgba(57, 201, 245, 0.795);
}

h1 {
    font-family: 'Arial';
    font-size: 45px;
    margin-left: 20px;
}

hr {
    border-color: black;
  }

  #seperator {
      border-width: 2.2px;
      border-style: double;
  }
/*Button Styling */

#addButton {
    display: inline;
    float: right;
    margin-top: 10px;
    margin-right: 70px;
    border-radius: 20%;
    padding: 10px;
    background-color: rgb(245, 38, 210);
    color: white;
    font-family: Arial;
    font-weight: bold;

}
/*this is the delete button*/
#contactsList button {
    height: 15px;
    width: 30px;
    display: none;
    float:right;
    line-height: 4px;
    background-color: red;
    color: white;
    border-radius: 4px;
    border-color: red;
    font-weight: bold;
    font-size: 20px;
}

/* Input styling*/
input {
    padding-right: 50px;
    padding-bottom: 5px ;
    margin-bottom: 5px;
    margin-left: 20px;

}

/*this is the div surrounding input paramaters*/
.inputInfo {
    width: 50px;
    display: inline;
    
    
}
/*input paramaters*/
.inputBar {
    border-radius: 5px;
}
/*search bar*/
#searchBar {
    width: 300px;
    border-radius: 5px;
}

::placeholder{
    color: rgb(71, 70, 70);
}

/* Styling of added Contacts */

h2 {
    display: inline;
    font-family: Arial;
    margin-left: 20px;
    font-size: 25px;
    margin-bottom: 5px;
}

h3 {
    font-weight: normal;
    margin-left: 20px;
    font-size: 20px;
    height: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact hr {
    border-color: rgb(140, 145, 150);
}




