/*
 Theme Name:   Twenty Seventeen Child
 Description:  Twenty Seventeen Child Theme
 Author:       Wordpress Tutorial
 Template:     twentyseventeen
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  twenty-seventeen-child
*/

/* Add Custom CSS after this line */


/* In order to scroll properly */
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 10px;
}


/* placeholder colors */

input[type="text"], 
input[type="email"]  {
   -webkit-transition: all 2s ease;
   -moz-transition: all 2s ease;
   -o-transition: all 2s ease;
   transition: all 2s ease;
}?

input[type="text"]:focus, 
input[type="email"]:focus {
   box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.3);
}

::placeholder { 
   color:rgba(150,150,150,0.5); 
}
::-webkit-input-placeholder { /* WebKit browsers */
   color:rgba(150,150,150,0.5) !important; 
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:rgba(150,150,150,0.5) !important; 
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:rgba(150,150,150,0.5) !important; 
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:rgba(150,150,150,0.5) !important; 
}

:focus::placeholder { 
   color:rgba(100,100,100,0.25) !important; 
}
:focus::-webkit-input-placeholder {
   color:rgba(100,100,100,0.25) !important; 
}
:focus:-moz-placeholder {
   color:rgba(100,100,100,0.25) !important; 
}
:focus::-moz-placeholder { 
   color:rgba(100,100,100,0.25) !important; 
}
:focus:-ms-input-placeholder {
   color:rgba(100,100,100,0.25) !important; 
}