a:link { color: black; text-decoration: none;}
a:visited { color: black; text-decoration: none;}
a:hover { color: black; text-decoration: none;}

.displayNone {
    display: none;
}

.time-section {
    display: inline-block;
    min-width: 2ch; /* Ensures each section (hours, minutes, seconds) has the same width */
}

.welcomeTextSection { 
    display: inline-block; 
    height: 60px;
    line-height: 72px; 
    border-right: 5px solid #000; 
    padding-right: 5px; 
    box-sizing: border-box; 
    animation: cursor 0.4s infinite;
}
  
@keyframes cursor{ 
    0% {border-right: 5px solid #cecece} 
    50% {border-right: 5px solid #000} 
    100% {border-right: 5px solid #cecece} 
}

.snow {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 3px 3px white;
}

body {
    overflow-x: hidden;
}