@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background-color: rgb(39, 7, 49);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
}

.container {
    text-align: center;
    background-color: tan;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 5%;
    margin-bottom: 80px;
    box-sizing: border-box;
    animation: scaleUp 1s ease-in-out forwards;
}

.business-name {
    text-align: center;
    margin-bottom: 20px;
    pointer-events: none;
    user-select: none;
}

.business-name img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid hsl(302, 26%, 28%);
    pointer-events: none;
    user-select: none;
}

h1 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.social-link {
    background-color: transparent;
    color: rgb(39, 7, 49);
    font-size: 1.3em;
    padding: 12px 25px;
    border: 2px solid rgb(39, 7, 49);
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    width: auto;
}

.social-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    pointer-events: none;
    user-select: none;
}

.social-link:hover {
    background-color: hsl(302, 26%, 28%);
    color: white;
    transform: scale(1.05);
}

.social-link:active {
    background-color: #003d80;
    color: white;
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
        max-width: 90%;
        margin-top: 12%;
        margin-bottom: 60px;
    }

    .business-name h2 {
        font-size: 1.2em;
    }

    .logo img {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 1.2em;
    }

    .social-link {
        font-size: 1.1em;
        padding: 10px 20px;
        width: auto;
    }

    .social-links {
        flex-direction: column;
    }
}

@media (min-width: 600px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .social-link {
        width: auto;
        padding: 12px 25px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
    
     .logo img {
        width: 100px;
        height: 100px;
    }
}

footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color:  hsl(0, 12%, 79%);
    font-size: 0.9em;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: auto;
    margin-bottom: 0;
    
    
}

footer p {
    margin: 0;
    font-weight: 300;
}


