* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #323251, #2b2b45);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow-x: hidden;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150px;
    
    padding-top: 20px;
}
header ul li a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
header ul li a:hover{
    text-decoration: underline;
}
header ul{
    list-style-type: none;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 100px;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container section{
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timerWrap {
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: center;
}
#map{
    width: 800px;
    height: 800px !important;
}
.divider{
    width: 600px;
    height: 2px;
    background-color: white;
    margin-bottom: 50px;
}
.distance{
    text-align: center;
    margin-top: -5px;
}
h1 {
    margin-bottom: 25px;
    font-weight: 500;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.timer span {
    font-size: 42px;
    font-weight: 600;
}

.timer small {
    opacity: 0.8;
}

#map {
    height: 320px;
    border-radius: 20px;
    margin: 30px 0;
    overflow: hidden;
}

.distance {
    font-size: 16px;
    opacity: 0.9;
}
