* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(260deg, #923CB5, #000000);
    color: #000;
}

header {
    background: linear-gradient(115deg, #000000, #923CB5);
    color: gold;
    padding: 20px 0;
    text-align: center;
}
.mypic{
    position: relative;
    display: flex;
    text-align: right;
    margin-left: 10%;
    border-radius: 100%;
    width: 12%;
    transition: all 0.5s ease;
}
.mypic:hover{
    transform: scale(1.2);
    box-shadow: 0 0 10px gold,
                0 0 5px gold,
                0 0 15px gold,
                0 0 15px #fffaf1,
                0 0 5px #fffaf1,
                0 0 10px #fffaf1;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: gold;
    text-decoration: none;
    font-weight: 700;
    transition:color 0.5s ease ;
    transition: all 0.4s ease;
}

nav ul li a:hover {
    color: #fffaf1;
    font-size: 18px;
}

section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background: #fffaf1;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: gold;
    border-bottom: 2px solid gold;
    padding-bottom: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.project {
    background: #6dd5 
} 

form{
    display: inline-block;
    padding: relative;
    margin: 5%;
    padding: 5%;
}

footer{
    position: relative;
    padding: 20px 0;
    background-color: #000;
}

.pfooter {
    color: white;
    font-size: 14px;
    text-align: center;
}