

header {
    text-align: center;
    padding: 1em 0;
    border-bottom: 1px dashed black;
    animation: fadeIn 2s ease-in-out;
    background: linear-gradient(to right, slateblue, lightblue);
}

a {
    margin: 0 15px;
	color: black;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
    color: #007BFF;
    transform: scale(1.1);
}

section {
	padding: 2em;
}

.about-me {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 2em;
    margin: 2em 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.about-me h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.about-me p {
    font-size: 1.2em;
    line-height: 1.5;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: linear-gradient(135deg, slateblue, lightblue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: transform 0.2s, background-color 0.2s;
}

.button:hover {
    background: linear-gradient(135deg, slateblue, lightblue);
    transform: scale(1.1);
}

img.profile {
	width: 500px;
	height: 500px;
	margin: 0 auto;
	border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s
}

img.profile:hover {
	transform: scale(1.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

details {
	border: 2px dashed black;
	padding: 1em;
	margin: 10px;
	border-radius: 0;
	
}

details:hover {
	border: 2px solid black;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

footer {
    text-align: center;
    padding: 10px;
    border-top: 1px dashed black;
    animation: fadeIn 2s ease-in-out;
    background: linear-gradient(to right, slateblue, lightblue);
}

