:root {
    /* --primary-color: rgb(0, 118, 198); */
    --primary-color: rgb(63, 63, 63);
    --border-color: rgb(63, 63, 63);
    --bg-color: rgb(179, 179, 179);
    --card-bg-color: rgb(235, 235, 235);
    --button-bg: rgb(25, 79, 85);
    --button-bg-hover: rgb(25, 79, 85);
    --button-color-hover: white;
    --blur: 10px;
  }

body{
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-color);;
    display: flex;
    align-items: center;
    min-height: 80vh;
    color:var(--primary-color);
    text-align:center
}

.phone {
    font-size: 2rem;
}
/* UTILITY CLASSES */
.max-w-md {
    max-width: 28rem/* 448px */;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.bg-white {
    background-color: white;
}
.rounded-xl {
    border-radius: 0.75rem/* 12px */;
}
.overflow-hidden {
    overflow: hidden;
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.h-48 {
    height: 28rem/* 192px */;
}
.w-full {
    width: 100%;
    height: auto;
}
.object-cover {
    object-fit: cover;
}
.p-1 {
    padding: 1rem;
}
.p-2 {
    padding: 2rem;
}
.pb-2{
    padding-bottom: 2rem;
}
.mt-1 {
    margin-top: 1rem;
}
.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}
.m-1 {
    margin: 1rem;
}
.m-2 {
    margin: 2rem;
}
.bg-color{
    background-color: var(--card-bg-color);
}
.border {
    border: 1px solid white;
    border-radius: 1rem;
}
.uppercase {
    text-transform: uppercase;
}
.tracking-wide {
    letter-spacing: 0.015em;
}
.text-sm {
    font-size: 2rem/* 14px */;
    line-height: 2.25rem/* 20px */;
}
.text-slate {
    color: rgb(63, 63, 63);
}
.font-semibold {
    font-weight: 600;
}
svg {
    position: relative;
    top: 2px;
}
.button {
    border: 1px solid var(--border-color) ;
    outline: none;
    padding: 1rem 2rem ;
    border-radius: 5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    font-size: 1.5rem;
}
.button:hover {
    cursor: pointer;
    background-color:var(--button-bg-hover);
    color:var(--button-color-hover);
}


/* ------------------------------------- */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    .md\:h-full {
        height: 100%;
    }
    .md\:w-48 {
        width: 15rem/* 192px */;
    }
    .md\:shrink-0 {
        flex-shrink: 0;
    }
    .md\:max-w-2xl {
        max-width: 42rem/* 672px */;
    }
}