body {
    font-family: 'Inter', sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    text-align: center;
}

.etsy {
    background-color: #f16529;
    color: white;
}

.youtube {
    background-color: #ff0000;
    color: white;
}

.instagram {
    background-color: #E1306C;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}
