*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background-color: #f1f0ec;
    color: black;
    display: flex;
    flex-direction: column;
}

.site-header {
    padding: 24px 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 100px;
    height: auto;
}

.brand-name {
    font-weight: 600;
    font-size: 16px;
    color: black;
}

.site-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown {
    position: relative;
    text-align: center;
}

.time {
    font-size: clamp(72px, 18vw, 220px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    display: block;
}

.notify-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #0b0b0b;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.notify-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.site-footer {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.site-footer a {
    color: black;
    text-decoration: none;
} 

.site-footer a:hover {
    text-decoration: underline;
}

.social-icon {
    display: inline-flex;
    align-items: center;
}

.social-icon svg {
    width: 50px;
    height: 50px;
    display: block;
}

.social-icon.email svg {
    width: 50px;
    height: 50px;
    fill: #000;
}
