/* Remove default margins and padding */
body, html {
margin: 0;
padding: 0;
overflow-x: hidden;
}
/* Fade-in animation */
.fade-in {
opacity: 0;
animation: fadeIn 2s forwards;
}
.fade-in-delay {
opacity: 0;
animation: fadeIn 2s forwards;
animation-delay: 2s; /* Delays the fade in of the phone number by 2 seconds */
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
/* Responsive text for mobile */
@media only screen and (max-width: 600px) {
.responsive-text {
font-size: 20px !important;
}
.responsive-phone {
font-size: 30px !important;
}
}
