*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 16px;
    @media (max-width: 768px) {
        font-size: 14px;
    }
}

html, body {
    font-family: "Urbanist", sans-serif;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* CSS for skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #08182C;
    outline: 1px solid #1e3654;
    color: #fff;
    padding: 12px 16px;
    z-index: 100;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s;
    border-radius: 0 0 8px 8px;
}

/* Show link when focused */
.skip-link:focus {
    top: 0;
}

.main-content {
    min-height: 100vh;
    width: 100%;
    background-image: url('./assets/page-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.domain-registered-wrapper {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.tabs {
    width: 100%;
    margin: 2rem 0;
    @media (max-width: 768px) {
        margin: 1rem 0;
    }
}
.tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    @media (max-width: 768px) {
        margin-bottom: 20px;
    }
}
.tab-btn {
    padding: 4px 12px 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 100vh;
    color: #E1E3E6;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 25px;
}
.tab-btn.active {
    background: #fff;
    font-weight: 600;
    color: #08182C;
}
.tab-btn:focus {
    outline: 2px solid #0078d7;
}
.tab-btn img {
    width: 24px;
    height: 24px;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.text-white {
    color: #ffffff;
}
.text-cultured {
    color: #F5F6F7;
}
.text-green {
    color: #69CAA7;
}
.title {
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 800;
    line-height: 80px;
    color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #FFF;
    @media (max-width: 768px) {
        font-size: 3.5rem;
        line-height: 60px;
    }
}
.title span {
    color: #ffffff;
    font-weight: 700;
}
.description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 34px;
    @media (max-width: 768px) {
        line-height: 24px;
    }
}
.small-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 30px;
}
.text-base {
    font-size: 1rem;
    font-weight: 300;
    line-height: 28px;
    font-family: "Lexend", sans-serif;
}
.text-underline {
    text-decoration: underline;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.my-32 {
    margin-block: 32px;
    @media (max-width: 768px) {
        margin-block: 20px;
    }
}
.mb-8 {
    margin-block-end: 8px;
}
.pb-32 {
    padding-block-end: 32px;
    @media (max-width: 768px) {
        padding-block-end: 20px;
    }
}

.line {
    width: 40px;
    height: 1px;
    background: #394656;
    margin-block: 32px;
    @media (max-width: 768px) {
        margin-block: 20px;
    }
}
.logo {
    width: 300px;
    height: auto;
    object-fit: contain;
    @media (max-width: 768px) {
        width: 150px;
    }
}