* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;

    --main-size: 2 / 12;
}




/* GENERAL */

body {
    display: flex;
    flex-direction: column;
}

main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 20px;
}

hr {
    grid-column: var(--main-size);
    margin: 40px 20px;
}

.solid-button {
    background-color: #2d3740;
    color: aliceblue !important;
    border: 10px solid #2d3740;
    border-radius: 10px;
    text-decoration: none;
}

.blue {
    color: #2393a1;
}

.gray {
    color: #35414b;
}

.center {
    text-align: center;
}



/* HEADER */

header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: lightblue;
}

header a {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.header-left {
    display: flex;
    align-items: center;
    margin: 14%;
}

.header-left * {
    margin-left: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 14%;
    padding-right: 40px;
}

.header-right * {
    margin: 10px;
}

header a {
    text-decoration: none;
    color: #2d3740;
}

header a:visited {
    color: #2d3740;
}

#header-title {
    font-family: "Oxanium", Arial, Helvetica, sans-serif;
    font-size: 2.2rem;
    font-weight: bolder;
}






/* MAIN */


#main {
    display: flex;
    justify-content: center;
    grid-column: var(--main-size);
    margin: 80px 5px;
}

#main-container {
    width: fit-content;
    max-width: 600px;
    margin-right: 180px;
}

h1 {
   font-size: 4.5rem !important;
}

#subtitle {
    margin: 20px 5px;
    margin-bottom: 40px;
}






/* HIGHLIGHTS */


#highlights {
    padding: 15px;
    padding-top: 25px;
    line-height: 1.6rem;
    grid-column: var(--main-size);
}

#highlights-title {
    margin: 20px;
    font-size: 2.7rem;

}

#highlights-list {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    margin: 10px 15vw;
}

.highlights-header {
    font-weight: bold;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

#highlights-right li {
    margin: 15px;
}

#highlights-left li {
    margin: 15px;
}






/* BENEFITS */


#benefits {
    padding: 15px;
    padding-top: 25px;
    line-height: 1.6rem;
    grid-column: var(--main-size);
}

#benefits-title {
    font-size: 2.7rem;
}

#benefits-list {
    list-style: none;
    display: flex;
    margin: 10px 15vw;
}

.benefits-header {
    font-weight: bold;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

#benefits-left li {
    margin: 35px;
}

#benefits-right li {
    margin: 35px;
}





/* FAQS */


#faqs {
    box-shadow: 0 0 15px #b1bfc9;
    width: 60vw;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
    grid-column: var(--main-size);
    margin: auto;
}

#faqs-title {
    width: 100%;
    text-align: center;
    margin: 15px;
    font-size: 2.5rem;
}

#faqs-subtitle {
    width: 100%;
    text-align: center;
    margin: 15px;
    color: rgb(79, 79, 85);
}

#faqs summary {
    list-style: none;

}

#faqs summary:hover {
    color: #ff4b6d;
}

.answer {
    margin: 5px;
    margin-top: 10px;
}

#faqs details {
    font-size: 1.1rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 15px;
    background-color: #f9f9f9;
    width: 85%;
    margin: 10px auto;
}

#faqs ul {
    margin-top: 10px;
    margin-left: 30px;
}

#faqs-container {
    display: flex;
    justify-content: center;
}

#faqs-left {
    margin-right: 1%;
    width: 48%;
}

#faqs-right {
    margin-left: 1%;
    width: 48%;
}




/* JOIN */

#join {
    grid-column: var(--main-size);
}

#join-today-btn {

    display: block;
    margin: 30px auto;
    font-size: 2.8rem;
    width: fit-content;
    border: 30px solid #2d3740;
    border-radius: 20px;
}

#join-today-btn:hover {
    border-color: #596772;
    background-color: #596772;
}










/* FOOTER */


footer {
    background-color: aliceblue;
    padding: 10px 10%;
}

footer a {
    color: #2d3740 !important;
}

footer ul {
    list-style: none; 
    padding: 0px;
}

#footer-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.footer-section {
    margin: 20px;
    text-align: left;
}

#footer-subtitle {
    margin: 10px 0;
}

#socials-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 5px;
}

#socials-container ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials-icon {
    margin: 0px 10px;
    color: black;
    background-color: lightblue;
    border: 8px solid lightblue;
    border-radius: 20px;
}

.socials-icon:hover > * {
    transform: scale(1.25);
}

.socials-icon:hover {
    background-color: rgb(138, 190, 207);
    border: 10px solid rgb(138, 190, 207);
    border-radius: 20px;
}

#deveco-footer {
    text-align: center;
}

#footer-copywrite {
    display: block;
    width: 100%;
    text-align: center;
}

.location-icon * {
    display: inline-block;
}

#footer-location-container * {
    display: inline-block;
}

#footer-location-container {
    min-width: 120px;
}

.location {
    display: block;
    margin: 5px 0;
}

#footer-about {
    min-width: 120px;
}

#footer-about * {
    display: block;
    margin: 5px 0;
}

#footer-contact * {
    margin: 5px 0;
}




/* RESPONSIVENESS THINGS */


/* @media screen and (min-width: 0) and (max-width: 599px) {
    .margin {
        margin: 16px;
    }

} */