@import url(https://fonts.googleapis.com/css?family=Montserrat:400,300,300italic,400italic,700,700italic);
*{
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

input, textarea{
    font-size: 1em;
    margin: 5px; 
    padding: 2px; 
    width: 90%;
    border-radius: 5px;
    border: 1px solid #999;
}
.primary{
    background-color: crimson;
    color: white; 
    min-width: 100px;
    border-radius: 5px; 
    border: none; 
}
.secondary{
    background-color: #eee;
    font-weight: normal;
}
a{
  text-decoration: none;    
  padding: 1px 5px;
  color: #333;
}
a:hover{
    background-color: crimson; 
    border-radius: 5px; 
    color: white;  
}
#msg {
    color: crimson;
    padding: .5em;
    display: none;
}
.menu{
    position: fixed;
    height: 60px; 
    background: #fff9;
    z-index: 1;
    width: 100%;
    display: flex; 
    justify-content: space-evenly;
    text-align: center; 
}

.menu-item{
    padding: 1em; 
}
.profile{
    background-image: url(../img/divya_profile.jpg);
    content:' ';
    background-repeat: no-repeat;
    height: 2000px; 
    zoom: 30%; 
}
footer{
    background-color: #eeee;
}
.head{
    height: 60px; 
    content: ' ';
}
.dialog{
    background-color: white;
    border: 1px solid #bbb; 
    border-radius: 5px; 
    box-shadow: #999 0px 0px 5px;
    padding: 2em; 
    display: none; 
    position: fixed;
    top: 50%; 
    left: 50%; 
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow-y: scroll;

}
.form-control{
    width: 100%;
}