body,
div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Helvetica, Arial, sans-serif;
}

h2 {
    text-align: center;
}

p.bold {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

img {
    max-width: 300px;
}

.button {
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #ff3333;
    animation: blink 0.5s linear infinite;
}

@keyframes blink {
    50% {
        opacity: 0.2;
    }
}

.instagram-btn {
    display: inline-block;
    background-color: #E1306C;
    color: white;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.instagram-btn:hover {
    background-color: #c1275a;
}

.instagram-btn img {
    width: 66px;
    height: 66px;
    margin-right: 14px;
}
