You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
603 B

.avatar {
height: 200px;
display: flex;
gap: 2em;
}
.avatar h1 {
font-size: 2em;
}
.avatar h4 {
font-weight: normal;
}
.avatar > img {
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
border-radius: 100%;
max-width: 100%;
transition-duration: 0.3s;
}
.avatar > img:hover {
transition-duration: 0.3s;
transform: scale(1.1) rotate(-20deg);
}
/* mobile */
@media (max-aspect-ratio: 1/1) {
.avatar {
flex-direction: column;
height: unset;
text-align: center;
gap: unset;
}
.avatar h1 {
font-size: 1.5em;
}
}