
*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
header nav{
    padding: 0.2em 4em;
    border-bottom: 1px solid #555;
}
header nav ul{
    display: flex;
}
header nav ul{
    list-style: none;
}
header nav ul li{
    margin: 20px;
}
header nav ul li a{
    transition: 0.5s;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}
header nav ul li a:hover{
    color: black;
}

header .heroText{
    padding: 6em;
}
header .heroText h1{
    margin: 50px 0 10px 0;
    font-size: 4em;
    color: #fff;
    font-weight: 100;
    cursor: default;
}
header .heroText p{
    margin:20px 0 50px 0;
    color: #fff;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: default;
}
.heroText a{
    text-decoration: none;
    color: #fff;
    padding: 0.5em 2em;
    font-size: 1.2em;
    background: none;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: 0.3s;
}
.heroText a:hover{
 background: #fff;
 color: #555;
}
.photo{
    position:absolute;
    top: 20%;
    left:65%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: 100% 0;
    border-radius: 100%;
    transition: 0.5s;
    filter: saturate(0);
}
.photo:hover{
    border-radius: 200px;
    transform: rotate(10deg);
    filter: saturate(100%);
}

/* CONTACT BEGIN */

.contact{
    padding: 6em;

}

.contact h1{
    font-weight: 100;
    
}

.contact p{
    border-radius:10px;
    border: 1px solid rgb(28, 26, 26);
    padding:  0.5em 1em;
    width: 6%;
    margin: 1em 0;

}


/*Projects*/

.projects{
    padding: 4em;
    text-align: center;
    background: rgba(0, 0, 0, 30%);
}
.p1 h1{
    margin: 1em;
    color: #fff;
}
.p2 h1{
    margin: 1em;
    color: #fff;
}
.projects .p1{
    margin-bottom: 4em;
}
.projects .p1 a img{
  width: 800px;
  border-radius: 20px;
  border: 10px solid #fff;
}
.projects .p2 a img{
    width: 800px;
    border-radius: 20px;
    border: 10px solid #fff;
  }