body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    user-select: none !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: silver;
    border-radius: 5px;
}

.container {
    max-width: 768px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    width: fit-content;
    margin: 32px auto;
    margin-bottom: 32px;
}

.logo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 8px;
    border: solid 3px #dc3545;
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%; */
}

.logo h2 {
    font-size: 18px;
}

.buttons {
    text-align: center;
    margin-bottom: 32px;
}

.btn {
    display: block;
    margin-bottom: 10px;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.main-btn {
    color: #dc3545;
    border: solid 3px #dc3545;
    font-size: 16px;
    font-weight: 600;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
}

.map-container {
    margin-bottom: 32px;
}

.title {
    margin-bottom: 0;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content:center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 32px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    padding: 5px;
    transition: transform 0.3s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.poweredByContainer {
    width: fit-content;
    text-decoration: none;
    margin: auto !important;
}

.powerBy {
    box-shadow: 0px 1px 4px rgb(5 5 5 / 15%);
    text-shadow: none;
    background: white;
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
    padding: 8px 1  6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 32px;
    text-decoration: none;
}