* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #E6007E;
    --text-color: #000000;
}

body {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100dvh;
    gap: 4rem;
    padding: 16px;
    text-align: center;
}

h1 {
   font-size: 36px;
    color: var(--primary);
    font-weight: 500;
}

p {
    margin-top: 12px;
}

.logo {
    height: 200px;
    max-width: 500px;
    width: 100%;
}

.phone {
    color: var(--primary);
}

.phone:hover {
    text-decoration: none;
}

.info {
    display: flex;
    flex-direction: column;
}

@media (max-width: 500px) {
    body {
        gap: 2rem;
    }
}