body {
    background-color: blueviolet;
    color: cyan;
}

h1 {
    color: pink;
}
h1.gabby {
    color: springgreen;
}
h3 {
    color: lavender;
}

th {
    border: double;
}

td {
    border: groove;
    color: azure;
    border-color: cyan;
}

.title {
    color: initial;
    transition: all 2s;
}
.title:hover {
    rotate: 360deg;
    color: aqua;
    font-size: big;
}
.thumb {
    transition: all 2s;
    width: 100px;
}
.thumb:hover {
    width: 100px;
}

#gabbypicture {
    width: 400px;
}
