* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
 
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
position: relative;
min-height: 100vh;
background: #f96823;
}
 
/* Header Styles */
.header {
padding: 12px 30px;
display: flex;
justify-content: space-between;
align-items: center;
height: 75px;
box-shadow: 0px 2px 10px 0px rgb(0 0 0/ 40%);
position: relative;
z-index: 1000;
flex-shrink: 0;
background: white;
}
 
.logo {
display: flex;
gap: 12px;
}
 
.BobInternetLogo {
height: 50px;
width: 40%;
object-fit: contain;
}
 
.BobInternetLogo2 {
height: 50px;
width: 40%;
object-fit: contain;
}
 
.main-content-index {
background: white;
border-radius: 20px;
padding: 30px 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
margin: auto;
max-width: 600px;
width: 100%;
animation: fadeIn 0.6s ease-in;
}
 
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
 
h1 {
color: #6c4b4b;
font-size: 1.5em;
margin-bottom: 30px;
line-height: 1.4;
}
 
h3 {
color: #666;
font-size: 1.2em;
margin-bottom: 30px;
font-weight: 500;
}
 
#time {
display: inline-block;
background: linear-gradient(135deg, #ff6633 0%, #ff4000 100%);
color: white;
font-size: 0.8em;
font-weight: bold;
padding: 5px 10px;
border-radius: 50px;
box-shadow: 0 5px 15px rgb(102 126 234/ 40%);
animation: pulse 1s ease-in-out infinite;
}
 
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
 
p {
color: #555;
font-size: 1em;
line-height: 1.6;
}
 
a {
color: #667eea;
text-decoration: none;
font-weight: 600;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
word-break: break-all;
}
 
a:hover {
color: #764ba2;
border-bottom: 2px solid #764ba2;
}
 
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
 
/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
.header {
padding: 10px 20px;
height: 65px;
}
.logo {
gap: 10px;
}
.BobInternetLogo {
height: 45px;
}
.BobInternetLogo2 {
height: 45px;
}
.main-content-index {
padding: 35px 30px;
margin: 20px;
max-width: 90%;
}
h1 {
font-size: 1.3em;
margin-bottom: 25px;
}
h3 {
font-size: 1.1em;
margin-bottom: 25px;
}
#time {
font-size: 0.75em;
padding: 5px 10px;
}
p {
font-size: 0.95em;
}
}
 
/* Mobile Devices (600px and below) */
@media (max-width: 600px) {
body {
overflow-y: auto;
overflow-x: hidden;
}
.header {
padding: 8px 15px;
height: 60px;
}
.logo {
gap: 8px;
width: 100%;
}
.BobInternetLogo {
height: 45px;
width: 40%;
max-width: 120px;
}
.BobInternetLogo2 {
height: 45px;
width: 40%;
max-width: 120px;
}
.main-content-index {
padding: 30px 20px;
margin: 15px;
max-width: 95%;
border-radius: 15px;
}
h1 {
font-size: 1.2em;
margin-bottom: 20px;
}
h3 {
font-size: 1em;
margin-bottom: 20px;
}
#time {
font-size: 0.7em;
padding: 4px 8px;
}
p {
font-size: 0.9em;
line-height: 1.5;
}
}
 
/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
.header {
padding: 8px 12px;
height: 55px;
}
.logo {
gap: 6px;
}
.BobInternetLogo {
height: 45px;
width: 45%;
max-width: 100px;
}
.BobInternetLogo2 {
height: 45px;
width: 45%;
max-width: 100px;
}
.main-content-index {
padding: 25px 18px;
margin: 12px;
border-radius: 12px;
}
h1 {
font-size: 1.1em;
margin-bottom: 18px;
line-height: 1.3;
}
h3 {
font-size: 0.95em;
margin-bottom: 18px;
}
#time {
font-size: 0.65em;
padding: 4px 8px;
}
p {
font-size: 0.85em;
line-height: 1.4;
}
a {
font-size: 0.9em;
}
}
 
/* Extra Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
.header {
padding: 6px 10px;
height: 50px;
}
.logo {
gap: 5px;
}
.BobInternetLogo {
height: 40px;
width: 45%;
max-width: 90px;
}
.BobInternetLogo2 {
height: 40px;
width: 45%;
max-width: 90px;
}
.main-content-index {
padding: 20px 15px;
margin: 10px;
border-radius: 10px;
}
h1 {
font-size: 1em;
margin-bottom: 15px;
}
h3 {
font-size: 0.9em;
margin-bottom: 15px;
}
#time {
font-size: 0.6em;
padding: 3px 6px;
}
p {
font-size: 0.8em;
}
a {
font-size: 0.85em;
}
}
 
/* Landscape Mode for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
body {
overflow-y: auto;
}
.header {
height: 50px;
padding: 6px 15px;
}
.BobInternetLogo,
.BobInternetLogo2 {
height: 40px;
}
.main-content-index {
padding: 20px 25px;
margin: 10px auto;
}
h1 {
font-size: 1.1em;
margin-bottom: 15px;
}
h3 {
font-size: 0.95em;
margin-bottom: 15px;
}
#time {
font-size: 0.65em;
padding: 4px 8px;
}
p {
font-size: 0.85em;
line-height: 1.4;
}
}