:root {
    background-color: rgb(54, 54, 54);
    margin: 0;
    padding: 0;
    overflow-y: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    align-self: center;
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

h1 {
    margin-top: 10%;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    bottom: 0;
    position: fixed;
    align-self: center;

}

.footerBox {
    background-color: lightgreen;
    height: 50px;
    margin: auto;
    width: 100vw;
    border-radius: 20px;
    align-content: center;
    align-items: center;
    text-align: center;
}

.footerContent {
    display: flex;
    justify-content: center;
    align-content: center;
}

.footerButton {
    background-color: transparent;
    border-color: black;
    border-width: 2px;
    width: 200px;
    border-radius: 10px;
    color: rgb(139, 136, 136);
    font-weight: bold;
    color: black;
    cursor: pointer;
}

.mainButton {
    background: rgb(24, 24, 24);
    border-radius: 30px;
    width: 150px;
    height: 50px;
    font-size: large;
    border-width: 0px;
    color: aqua;
}

.centerButtons {
    align-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    gap: 30px;
}

.outerButton {
    background: inherit;
    border-radius: 30px;
    width: 165px;
    height: 60px;
    align-content: center;
    position: relative;
}

.outerButton .mainButton, .outerButton span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
}

.outerButton button {
    cursor: pointer;
    z-index: 9;
}

.mainButton button {
    border-radius: 30px;
    width: 165px;
    height: 60px;
}

.outerButton span {
    height: 100%;
    width: 100%;
    background: inherit;
}

.mainButton span {
    border-radius: 30px;
}

.outerButton:hover span:nth-child(1) {
    filter: blur(10px);
}

.outerButton:hover span:nth-child(2) {
    filter: blur(20px);
}

.outerButton:hover span:nth-child(3) {
    filter: blur(50px);
}

.outerButton:hover {
    background: linear-gradient(aqua, purple, lightgreen);
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.imgResize {
    margin-top: 10%;
    height: 200px;
    width: auto;
}