Danna Tyson
body {
font-: Arial, sans-serif;
background-color: #111;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.photo-container {
;
display: inline-block;
}
img {
max-width: 100%;
border-radius: 10px;
display: block;
}
.top-text {
;
top: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 2em;
font-weight: bold;
color: #ff4081;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.bottom-text {
;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 1.8em;
font-weight: bold;
color: #00e5ff;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
Danna Tyson
Welcome