@charset "UTF-8";


    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: sans-serif;
      background: url('/img/animal-clinic.jpg') no-repeat center center/cover;
    }

    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
      max-width: 90%;
      text-align: center;
    }


		    .overlay h1 {
      margin-top: 0;
      font-size: 24px;
      color: #333;
    }

    .overlay p {
      font-size: 18px;
      color: #555;
      margin: 10px 0;
    }

		.tel {
			color: #000;
			text-decoration: underline;
			text-underline-offset: 8px;
			font-weight: bold;
			font-size: 24px;
			display: block;
			margin-top: 20px;
			transition: color 0.3s ease;

		}


		@media screen and (max-width: 680px) {
      .overlay {
        width: 85%;
        padding: 20px;
				top: 30%;
      }

      .overlay h1 {
        font-size: 20px;
      }

      .overlay p {
        font-size: 16px;
      }

			.tel {
				font-size: 18px;
			}
    }
