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

body {
    min-height: 100vh;
    font-size: 24px;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 48px;
}

.logo {
    height: 240px;
}

.construction-title {
    font-weight: bold;
    font-size: 36px;
}

.construction-desc {
    font-weight: normal;
    max-width: 600px;
}

.cta-box {
    border: 2px dashed black;
    border-radius: 8px;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px
}

.cta-box .tel {
    font-size: 36px;
    font-weight: bold;
}