* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: all 75ms ease-in;
}

:root {
    --primary: #7CB7C3;
    --secondary: #513D38;
    --font-size-normal: 20px;
}

body {
    padding: 40px 16px;
    color: var(--secondary);
}

h1 {
    font-size: clamp(1.875rem, calc(4vw + 1rem), 2.5rem);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

span {
    font-size: var(--font-size-normal);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

button {
    border: none;
    background: unset;
    cursor: pointer;
    padding: 0;
}

.content {
    max-width: 300px;
    margin: 0 auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn {
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    border: 2px dashed var(--secondary);
    border-radius: 999px;
    color: var(--secondary);
    text-decoration: none;
    font-family: inherit;
    font-size: var(--font-size-normal);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary);
    color: #fff;
}

.logo-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.contact {
    display: block;
    line-height: 1.4;
    margin-bottom: 32px;
}

@media (max-width: 400px) {
    :root {
        --font-size-normal: 18px;
    }
    .logo-container img {
        width: 160px;
    }
}



