:root {
    --primary-gold: #FBB040;
    --primary-white: white;
    --primary-teal: #00ADB5;
    --primary-dark-blue: #222831;
}


body {
    color: white;
    font-family: roboto, sans-serif;
}

header {
    border-bottom: 2px solid var(--primary-gold);
}

header,
footer {
    text-align: center;
    padding: 16px 0px;
    background: url(/images/background-header.png);
     
}

#intro,
#intro a{
    font-size: 24px;
    color: #FBB040;
    text-decoration: none;
}

.h2-size {
    font-size: 20px;
}

#main-content {
    display: flex;
    flex-direction: column;
}


#main-container {
    display: flex;
    flex-direction: row;
}

#soon {
    border-left: 3px solid var(--primary-gold);
    padding: 16px 0px 16px 32px;
}

#cmsoon {
    font-size: 2em;
    font-weight: bold;
}

#left-section,
#right-section {
    width: 100%;
    height: 600px;
}

.title {
    font-size: 24px;
    font-weight:900;
}

.sub-title {
    font-size: 22px;
    font-weight: 600;
    max-width: 450px;
}

.body {
    font-size: 18px;
}

#main-legal {
    color: white;
    position:relative;
    font-size: 14px;
    padding-top:10px;
}

/* colors */

.gold {
    color: var(--primary-gold,#FBB040);
}

.white {
    color: var(--primary-white);
}

.teal {
    color: var(--primary-teal);
}

.bold {
    font-weight: bold;
}

.space {
    padding: 8px 0px 0px 0px;
}

#left-section {
    color:black;
    background: url(/images/hero-image.png) center center/ cover no-repeat;
}

#right-section {
    display: flex;
    padding: 0 50px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    background-color: #222831;
}


#features {
    display: flex;
    padding: 160px 60px;
    justify-content: center;
    gap: 120px;
    background: #373F4A;

}

.icon-feat {
    /* height: 50%;
    width: 50%; */
    object-fit: contain;
}

.spotlight {
    display: flex;
    flex-grow: 1;
    max-width: 350px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

li::before {
    content: "red";
    display: inline-block;
}

#coming-soon {
    color: #222831;
    background-color: #FBB040;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 160px 60px;
}

.content-container {
    max-width: 675px;
}

#soon-pic {
    margin-right: 24px;
}

.button {
    display: inline-block;
    padding: 6px 36px;
    border-radius: 6px;
    margin-top: 12px;
    font-weight: bold;
    text-decoration: none;
}

.outline-btn {
    border: 1px solid var(--primary-white);
    color: var(--primary-white);
}

.fill-btn {
    color: var(--primary-white);
    background-color: var(--primary-dark-blue);
}

.gold-btn {
    color: var(--primary-dark-blue);
    background-color: var(--primary-gold);
}

.button:hover {
    background-color: var(--primary-teal);
    color: var(--primary-white);
}

.fill-btn:hover,
.gold-btn:hover,
.button:hover {
    transition: 300ms;
}

.btn-ctn {
    padding: 12px 0px 24px 0px;
}

#author,
#author:visited {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: bold;
}

#author:hover {
    text-decoration: underline;
    transition: 500ms;
}

.hide {
    display: none;
}
