/*color palette and size styling*/

*{
    font-family: monospace;
}
body{
    margin:0;
    background-color: #f0f8ff;
    font-size: 20px;
}
header{
    background-color: #2196F3;
    height:100vh;
    color:white;
}
h1{
    font-size: 50px;
    color:#2196F3;
}
header h1{
    margin:0;
    color:white;
}
.button {
  height: 40px;
  width: 140px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.button:hover{
    color:white;
    background-color:darkcyan;
}
img{
    height:300px;
}
main{
    padding:20px;
}
section{
    height:100vh;
    border:1px solid gray;
    border-radius:20px;
    margin-bottom: 30px;
}
.submit{
    height: 40px;
    width: 140px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    background-color: #2196F3;
}
.submit:hover{
    background-color: #004278;
}
input{
    border-radius: 5px;
    border:1px solid lightgray;
    height: 25px;
}
.top{
    position:fixed;
    bottom:10px;
    right:10px;
    height:70px;
    width:70px;
    border:none;
    border-radius: 50%;
    cursor:pointer;
    color:white;
    background-color: #2196F3;
}
.top:hover{
    color:white;
    background-color:darkcyan;
}
footer{
    height:124px;
    background-color: black;
    color:lightgray;
}
.social-links {
  margin: 20px 0;
  text-align: center;
}
.social-link {
  margin: 0 15px;
}
.social-icon {
  height: 30px; 
  width: auto;
}





/*alligning the content to the center*/

/*Home section*/
#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#home .button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}



/*About section*/
#About {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#About img {
  border-radius: 10px; 
}

/*Skills section*/
#Skills {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center; 
}
#Skills ol {
  text-align: left;
  margin: 0;
}

/*Projects section*/
#Projects {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center; 
}
#Projects table {
  margin: 0 ;
}

/*Contact section*/
#Contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




