/* CSS reset */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Button Styles */
.button3 {
    display: inline-block;
    padding: 0.3em 1.2em;
    margin: 0 0.3em 0.3em 0;
    border-radius: .5em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Trebuchet MS", sans-serif;
    color: #ffffff;
    background-color: #2b6e96;
    text-align: center;
    transition: all 0.2s;
    font-weight: bolder;
}

.button3:hover {
    background-color: #4095c6;
}

#button {
    display: flex;
    justify-content: center;
    margin: 1rem;
}

/* h1 Styles */
h1 {
    text-align: center;
    font-family: "Trebuchet MS", sans-serif;
    font-size: 4em;
    letter-spacing: -2px;
}

.senatorGrid {
    display: flex;
    flex-wrap: wrap;
}

i {
    margin-left: 1rem;
}

body {
    background-color: lightyellow;
    background-image: linear-gradient(62deg, rgb(247, 240, 151) 0%, rgb(241, 239, 198) 100%);
}

.senatorDiv:hover {
    transform: scale(1.1);
}

figcaption {
    font-family: "Trebuchet MS", sans-serif;
}