body {
    margin: 0;
    height: 100vh;

    background: linear-gradient(90deg, #ff66c4, #ffde59);
    background-size: cover;
    background-repeat: no-repeat;

    font-family: 'Anton';
    letter-spacing: 1px;
}

* {
    font-size: 80px;
    text-decoration: none;
    text-align: center;
}

a {
    color: #000000;

    background-color: #fcd8c9;
    padding: 20px 30px;
    border-radius: 40px;

    transition: rotate 0.3s ease-out;
}

a:hover {
    rotate: 11deg;
}

main {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    height: 100vh;
}

img {
    max-width: 30vw;
    max-height: 30vh;
    position: absolute;
    z-Index: -1;
}

#paintbrush {
    top: 2%;
    left: 2%;
}

#painting {
    bottom: 2%;
    left: 2%;
}

#pallate {
    right: 2%;
    top: 20%;
}
