:root {
    --primary-color: black;
    --primary-bg-color: #10CE90;
    --text-color: #2c3e50;
    --font-family: 'Roboto', sans-serif;
}

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

body{
    background-color: #000;;
}
.container {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
}

.container_content{
    position: relative;
    width: 100%;
    color: var(--text-color);
    font-family: var(--font-family);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 30px;
}
/* 
* Text Styles
*/
.text-primary {
    color: var(--primary-color);
}

.text-email {
  background: linear-gradient(45deg, #c2f882, #00ffe2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-domain {
    color: rgb(253, 242, 242);
}

.text-find{
    color: rgb(253, 242, 242);
}

.text-center {
    text-align: center;
}

.gradient-text {
  --from: rgb(228, 241, 255);
  --to: #495057;
  --angle: 45deg;
  background: linear-gradient(var(--angle), var(--from), var(--to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

/* 
* Main Styles
*/
main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;  
    background-color: #000;
    height: fit-content;
    margin-bottom: 50px;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/*
* Main 
*/

#container-content {
    position: absolute;
    background-color: none;
}
.btn{
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: fit-content;
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 20px 20px;
    border-radius: 5px;
    background: var(--primary-bg-color);
    color: white;
    cursor: pointer;
}

.btn img {
    width: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.container_content a:hover {
    opacity: 0.9;
}

.find_domain_notice {
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
}

/* 
* Header Styles
*/
header {
    background-color: #000;
}
.header_content{
    z-index: 10;
    margin: 20px 0 20px 0;
    max-width: 80%;

}

.header_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 1200px;
}

.header_content img {
    margin-bottom: 20px;
    width: 100%;
}

/* 
* Footer Styles
*/
.footer_content {
    display: flex;
    flex-direction: column;
    align-items: space-evenly;
    justify-content: space-evenly;
    width: 100%;
    height: 200px;
    background-color: var(--primary-bg-color);
    padding: 20px;
    padding-left: 10%;

}
.footer_content .email-link{
    color: black;
    text-decoration: none;
}

.footer_content .email-icon {
    font-size: 2rem; /* hoặc 3rem, 32px, ... */
    vertical-align: middle;
}

.footer_content img {
    width: 300px;
    max-width: 100%;
}

/* Responsive Design */
/* @media screen and (min-width: 1200px) {
    main{
        min-height: 150vh;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    main{
        min-height: 150vh;
    }
}

@media screen and (min-width: 480px) and (max-width:  767px) {
    main{
        min-height: 120vh;
    }
} */



