* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    background: #fff;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    max-width: 300px;
    width: 100%;
}

.logo svg {
    width: 100%;
}

.draw {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw 6s ease both;
}

.draw-1 {
    animation-delay: 0s;
}
.draw-2 {
    animation-delay: 1s;
}
.draw-3 {
    animation-delay: 1.8s;
}
.draw-4 {
    animation-delay: 2.6s;
}
.draw-5 {
    animation-delay: 3s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.location {
    font-size: 1rem;
    color: #555;
}

.location a {
    color: #555;
    text-decoration: none;
}

.location a:hover {
    text-decoration: underline;
}
