* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

html {
    font-family: "Open Sans", "sans-serif";
    scroll-behavior: smooth;
   
}

header {
    background: #100f0f;
}

/* navbar section */

#navbar {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.75rem;
    height: 70px;
}

#navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

#navbar ul li a {
    padding: 0.50rem;
}

#navbar ul li a:hover{
    background: #142d42;
    border-radius: 4px;
}

/* home section */

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: url(https://i.pinimg.com/originals/66/99/d3/6699d35752185d17d47d1ba253f15191.jpg);
    background-size: cover;
   /* background-position-y: -250px; */
    
    
}

#home img{
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    
}

#home a {
    margin-top: 1.25rem;
    color: white;
    background: rgb(231, 134, 255);
    padding: 0.3rem 5rem;
    border-radius: 3px;
    transition: 0.3s;
}

#home a:hover {
    padding: 0.3rem 7rem;
    
}

#home h2, p{
    color: white;
}


/* technologies section */ 

.technologiesHeader {
    text-align: center;
    margin: 20px 0px;
}

.technologiesList {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 50%;
    margin-bottom: 10px;
}

#technologies img {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.2rem;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#technologies p {
    color: black;
}

.technology {
    margin: 5px 5px;
    display: flex;
    flex-direction: column;
}

/* quote section */ 

.quotesection {
    display: flex;
    text-align: center;
    width: 100%;
    padding: 10px;
    margin: 30px 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 15rem;
   /* background: rgb(39, 39, 39); */
    position: relative;
    background: url(https://www.toptal.com/designers/subtlepatterns/uploads/fresh_snow.png);
  
}

.quotesection p {
    color: black;
    font-size: 1.5rem;
    text-transform: lowercase;
    font-family: "Faustina", cursive;
}

.quotesection span {
    color: rgb(48, 48, 47);
    padding: 5px;
    border-radius: 5px;
    margin-top: 15px;
    bottom: 70px;
    position: absolute;
    
    
}

/* projects section */ 

.projectlist {
    display: flex;
    justify-content: center;
    
    margin: 0 auto;
    flex-wrap: wrap;
   
}

.project {
    display: flex;
    text-align: center;
    
  
    border-radius: 0px 0px 7px 7px;
    margin: 5px;
    align-items: center;
    width: 33%;
 
}

.project img {
    width: 55%;
    
    margin: 10px 10px;
    border-radius: 5px;
    object-fit: contain;
}

.projectinfo h3 {
    margin-bottom: 15px;
}

.project p {
    padding: 10px;
    color: black;
}



/* contact section */ 

#contact {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border: 5px solid black;
    padding: 17px;
    margin-top: 50px;
    background: url(https://www.toptal.com/designers/subtlepatterns/uploads/papyrus-dark.png);
    margin-bottom: 50px;
}

.contactinner {
    display: flex;
    flex-direction: column;
    background: url(https://www.toptal.com/designers/subtlepatterns/uploads/email-pattern.png) !important;
    padding: 45px;
    align-items: flex-start;
    color: black;
    background: white;
}

.contactinner input {
    width: 50%;
    height: 3rem;
    outline: none;
    line-height: 3rem;
    font-size: large;
    padding: 8px;
    margin: 5px 0px 10px 0px;
}


.contactinner textarea {
    width: 100%;
    outline: none;
    padding: 8px;
    font-size: 1.3rem;
    font-family: 'Faustina', serif;
}

.contactinner input:hover, textarea:hover {
    outline: none;
}

.contactinner h3 {
    font-size: 3.5rem;
}

.contactinner button {
    margin: 25px 15px 0px 15px;
    width: 50%;
    align-self: center;
    height: 2rem;
    border-radius: 3px;
    border: none;
    background: rgb(255, 114, 145);
    outline: none;
    font-size: 1.1rem;
    color: white; 
    transition: 0.3s;
    cursor: pointer;
}

.contactinner button:hover {
    width: 60%;
    
}

/* footer */ 

footer {
    width: 100%;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    padding: 15px;
    margin-top: 20px;
  
}

.footerinner {
    max-width: 1100px;
    margin: 0 auto;
    color: white;
    display: flex;
    justify-content: space-between;
}

.footerinnerright a {
    margin: 0px 8px;
}