@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    background: black;
}

body, html {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;

}

.card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Inter', sans-serif;
    width: 500px;
    height: 650px;
    border-radius: 20px;
    margin-top: 100px;
    background-color: #0c0c0c;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),   0 0 0 1px rgba(255, 255, 255, 0.05);

}

.globe {
    display: flex;
    font-size: 60px;
    margin: 0;
}

.globe-background {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: #1b1b1b;
    margin-top: 50px;
    margin-bottom: 30px;
}

.sale-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#for-sale {
    font-style: italic;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    padding: 0 80px;
    letter-spacing: -0.02em;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: grey;
}

#description-text {
    font-size: 14px;
    font-weight: 500;
    color: grey;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px auto;
    width: 60%;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 400px;
    height: 150px;
    background: #1b1b1b;
    border-radius: 26px;
    box-shadow: 3px 4px 30px -4px rgba(8,8,8,0.69) inset;
-webkit-box-shadow: 3px 4px 30px -4px rgba(8,8,8,0.69) inset;
-moz-box-shadow: 3px 4px 30px -4px rgba(8,8,8,0.69) inset;
}

#contact-text {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    font-family: 'Inter', sans-serif;
}

#contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 50px;
    background: #d4d6d6;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1b1b1b;
    text-decoration: none;
    transition: 0.3s all ease-in-out;
    font-family: 'Inter', sans-serif;
    box-shadow: 8px 10px 39px -5px rgba(125,124,124,0.69);
    -webkit-box-shadow: 8px 10px 39px -5px rgba(125,124,124,0.69);
    -moz-box-shadow: 8px 10px 39px -5px rgba(125,124,124,0.69);
}

#contact-button:hover {
    transform: scale(1.05);
}



.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    font-size: 12px;
    font-weight: 500;
    color: grey;
    letter-spacing: -0.02em;
}

.border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    pointer-events: none;
    box-shadow: 0 0 30px 2px rgba(255, 255, 255, 0.09);
    z-index: -1;
}