* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: rgb(18, 18, 18);
    color: rgb(222, 222, 222);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.center-container {
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 25%;
    max-width: 175px;
    height: auto;
    margin-bottom: 20px;
}

.devPoland {
    font-size: 4rem;
    font-weight: bold;
    color: rgb(222, 222, 222);
    text-shadow: 4px 4px 6px rgb(4, 118, 255), -4px -4px 6px rgb(210, 16, 52);
    display: inline-block;
}

.devPoland span {
    display: inline-block;
    animation: float 2s infinite;
}

.devPoland span:nth-child(1) {
    animation-delay: 0s;
}
.devPoland span:nth-child(2) {
    animation-delay: 0.1s;
}
.devPoland span:nth-child(3) {
    animation-delay: 0.2s;
}
.devPoland span:nth-child(4) {
    animation-delay: 0.3s;
}
.devPoland span:nth-child(5) {
    animation-delay: 0.4s;
}
.devPoland span:nth-child(6) {
    animation-delay: 0.5s;
}
.devPoland span:nth-child(7) {
    animation-delay: 0.6s;
}
.devPoland span:nth-child(8) {
    animation-delay: 0.7s;
}
.devPoland span:nth-child(9) {
    animation-delay: 0.8s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

p {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 20px;
    word-wrap: break-word;
    text-align: center;
}

.highlight {
    font-weight: bold;
}

.poland-bot {
    text-shadow: 3px 3px 4px rgb(4, 118, 255);
}

.poland {
    text-shadow: 3px 3px 4px rgb(210, 16, 52);
}

.button-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 225px;
    padding: 35px;
    border: 2.5px solid rgb(222, 222, 222);
    border-radius: 16px;
    text-decoration: none;
    color: rgb(222, 222, 222);
    font-size: 1.7rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button img {
    margin-bottom: 10px;
}

.bot-icon {
    width: 78px;
    height: auto;
}

.kofi-icon {
    width: 92px;
    height: auto;
}

.wrench-icon {
    width: 92px;
    height: auto;
}

.cs2-icon {
    width: 92px;
    height: auto;
}

.button:hover {
    transform: scale(1.05);
    color: rgb(255, 255, 255);
}

.button-theme-blue {
    border-color: rgb(4, 118, 255);
}

.button-theme-blue:hover {
    box-shadow: 0 0 10px rgb(4, 118, 255);
    color: rgb(217, 234, 255);
    text-shadow: 0px 0px 8px rgb(4, 118, 255), 0px 0px 13px rgb(4, 118, 255);
}

.button-theme-green {
    border-color: rgb(111, 255, 111);
}

.button-theme-green:hover {
    box-shadow: 0 0 10px rgb(111, 255, 111);
    color: rgb(225, 255, 225);
    text-shadow: 0px 0px 8px rgb(111, 255, 111), 0px 0px 13px rgb(111, 255, 111);
}

.button-theme-pink {
    border-color: rgb(248, 144, 255);
}

.button-theme-pink:hover {
    box-shadow: 0 0 10px rgb(248, 144, 255);
    color: rgb(225, 255, 225);
    text-shadow: 0px 0px 8px rgb(248, 144, 255), 0px 0px 13px rgb(248, 144, 255);
}

.button-theme-yellow {
    border-color: rgb(255, 191, 0);
}

.button-theme-yellow:hover {
    box-shadow: 0 0 10px rgb(255, 191, 0);
    color: rgb(225, 255, 225);
    text-shadow: 0px 0px 8px rgb(255, 191, 0), 0px 0px 13px rgb(255, 191, 0);
}

.button-theme-pink:hover .wrench-icon {
    filter: drop-shadow(0px 0px 5px rgb(248, 144, 255));
    transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
    img {
        width: 175px;
    }
    .devPoland {
        font-size: 2rem;
    }
    h1 {
        font-size: 3rem;
    }
    p {
        font-size: 1.2rem;
    }
    .button {
        width: 160px;
        font-size: 1rem;
    }
}
