@import url('https://fonts.googleapis.com/css2?family=Jim+Nightshade&display=swap');

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 5;
    }
}


body {
    animation: fadeIn 1s ease-out both;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.btns {
    cursor: pointer;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding: 10px 20px;
    background-color: #ff4081;
    border: none;
    text-decoration: none;
    color: black;
    border-radius: 5px;
}

.btns:hover {
    background-color: #e0356d;
    border: none;
    text-decoration: none;
    color: black;
}

.title {
    letter-spacing: 2px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    margin: 0 auto;
    border-bottom: 4px solid #d13267;
    width: max-content;
}

.salon-name {
    font-family: "Jim Nightshade", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    margin: 0 auto;
    width: max-content;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #d13267;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer {
    font-size: large;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.site-info {
    margin-top: 20px;
}

.quick-links {
    margin-top: 20px;
}

.quick-links h4 {
    color: white;
    font-weight: bold;
    border-bottom: 4px solid #d13267;
    margin-bottom: 10px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
}

.quick-links a:hover {
    color: black;
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    color: white;
    font-weight: bold;
    border-bottom: 4px solid #d13267;
    margin-bottom: 10px;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    color: #d13267;
    text-decoration: underline;
}

.social-links i {
    margin-right: 10px;
}

.copyright {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 600px) {}