@charset "utf-8";
/* CSS Document */

@media(max-width:768px){.logo-text-shadow{display:none} 

}
@media(min-width:768px){.logo-text-shadow-m{display:none} 

}

.logo-text-shadow {
    color: #0000ff;
    font-size: 40px;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    text-align: center;
    margin:0 0 -10px 0;
}

.logo-text-shadow-m {
    color: #0000ff;
    font-size: 40px;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    text-align: center;
    margin:0 0 -10px 0;
}

#phone2 {
    font-size: 40px;
    text-align: center;
    color: black;
    text-shadow: 2px 2px 4px #000;
    margin:-5px 0 5px 0;
}


/*
#phone2 {
    font-size: 30px;
    width: 250px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 255, 0.2), 0 6px 20px 0 rgba(0, 0, 255, 0.19);
    text-align: center;
}
#boxshadow {
    position: relative;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    padding: 10px;
    background: white;
}

#boxshadow img {
    width: 100%;
    border: 1px solid #8a4419;
    border-style: inset;
}

#boxshadow::after {
    content: '';
    position: absolute;
    z-index: -1; /* hide shadow behind image */
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3); 
    width: 70%; 
    left: 15%; /* one half of the remaining 30% */
    height: 100px;
    bottom: 0;
}