* {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

body {
    background-color: lightcoral;
    color: white;
}

h1 {
    font-size: 60px;
    margin: 0;
}

h2 {
    font-style: italic;
    font-weight: 500;
}

img {
    width: 600px;
    border-radius: 20px;
}

a {
    color: blue;
    font-weight: bold;
    font-size: 48px;
    transform-style: preserve-3d;
    animation: spin 5s linear infinite;
    padding: 100px 0px;
}

@keyframes spin {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }
    to {
        transform: rotate(360deg) rotateY(360deg);
    }
}

ul, ol {
    font-size: 24px;
}

header, footer {
    font-size: 18px;
    margin: 20px;
}

h3 {
    font-size: 36px;
    margin: 10px 0px 20px;
}

button {
    border: 2px solid black;
    padding: 10px 20px 0px;
    margin: 20px;
    border-radius: 10px;
    background-color: yellow;
    cursor: pointer;
}