
* {
    margin: 0px;
    padding: 0px;
    background-color: #EEEEEE;
}
.wrapper {
    height: 100%;
    width: 1168px;
    margin: auto;
    background-color: #EEEEE;
    text-align: center;
    overflow: hidden;
}
.push--top {
    width: 100%;
    height: 50vh; /* Use 50% of the viewport height */
    margin-bottom: -65px; /* Adjust this to align the content to the center */
    display: flex;
    align-items: center;
    justify-content: center;
}
ul {
    list-style-type: none;
}
li {
    display: inline;
    float: left;
    cursor: pointer;
    margin: 8px;
}
.button--wrapper {
    display: block;
    width: 130px;
    height: 170px;
    text-align: center;
}
.button--frame {
    background-color: white;
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 65px;
    overflow: hidden;
    
}
.button {
    background-color: blue;
    display: block;
    width: 122px;
    height: 122px;
    border-radius: 57px;
    margin: 4px;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, margin 0.3s ease; /* Add this line */
}
.button--wrapper:hover .button--frame .button {
    width: 130px;
    height: 130px;
    border-radius: 65px;
    margin: 0px;
}

.button--text h3 {
    font-family: 'Patrick Hand', cursive; /* Apply the hand-drawn style font */
    /* font-family: sans-serif; */
    font-weight: normal;
    padding-top: 8px;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, margin 0.3s ease; /* Add this line */
}

.button--wrapper:hover .button--text h3 {
    font-size: 1.5em;
}
.button img {
    width: 50%; /* Adjust based on the size of your icon */
    height: 50%; /* Adjust based on the size of your icon */
    display: block; /* This helps remove any unwanted space below the image */
    margin: auto; /* This centers the image horizontally */
    position: relative; /* Adjust positioning as needed */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Center vertically */
    background-color: transparent;
}
.button--pink { background-color: #FFD1DC; }
.button--blue { background-color: #A7C7E7; }
.button--green { background-color: #BFD8B8; }
.button--yellow { background-color: #F0E68C; }
.button--purple { background-color: #C3AED6; }
.button--orange { background-color: #FDBA96; }
.button--teal { background-color: #88D8C0; }
.button--lavender { background-color: #D6B3E6; }

h1 {
    font-family: 'Patrick Hand', cursive; /* Apply the hand-drawn style font */
    font-weight: normal;
    margin-top: 266px; 
}
.footer {
    margin-top: 800px;
    text-align: center; 
}
.footer h4 {
    font-family: 'Patrick Hand', cursive; /* Apply the hand-drawn style font */
    font-weight: normal;
    margin-bottom: 8px;
}