@import url('https://fonts.googleapis.com/css2?family=Ramabhadra&family=Roboto:wght@700&family=Secular+One&family=Varela+Round&display=swap');/*
    font-family: 'Roboto', sans-serif;
    font-family: 'Secular One', sans-serif;
    font-family: 'Varela Round', sans-serif;
*/
* {
    box-sizing: border-box;
}

body {
    font-family: /*'Ramabhadra',*/ sans-serif; /* Font problems... see readme */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header,
footer {
    background-color: #1f2937;
    color: white;
    width: 100%;
    margin: 0;
    padding: 0 15%;
}

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

header ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

a {
    text-decoration: none;
}

.normal-text {
    color: rgba(162, 162, 162, 0.98);
    font-weight: 400;
}

.button-sign-up {
    color: white;
    background-color: #3882f6;
    border-radius: 4px;
    border: 0;
    padding: 6px 25px;
    text-decoration: none;
    text-align: center;
}

.by-line {
    display: block;
    color: #1f2937;
    font-weight: 700;
    font-size: 22px;
    text-align: right;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    width: 100%;
}

#intro,
#info,
#quote,
#sign-in {
    flex: 1;
    width: 100%;
    padding: 3% 15%;
    margin: 0 auto;
}

#intro {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1f2937;
}

#intro .flex-item {
    flex: 1 1 100px;
    min-width: 0;
    width: 100000px;
    object-fit: contain;
    color: white;
}

div.flex-item {         /* does this always apply? */
    padding: 20px 0;
}

#intro .flex-item img {
    width: 100%;
    height: 100%;
    min-width: 300px;
    object-fit: cover;
}

#intro h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    line-height: .9;
    color: #f9faf8;
    display: inline-block;
}

#info,
#quote {
    background-color: white;
    padding: 3% 20%;
}

#info h2 {
    width: 100%;
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: space-around;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card .card-box {
    flex: 1 1 100px;
    width: 150px;
    height: 150px;
    border: 4px solid #3882f6;
    border-radius: 10px;
}

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

.card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#quote {
    color: #1f2937;
    font-weight: 100;
    font-size: 36px;
    line-height: 1;
    text-align: justify;
    background-color: #e5e7eb;
}

#sign-in {
    background-color: white;
}

#call-to-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    padding: 6% 10%;
    background-color: #3882f6;
    color: white;
}

#call-to-action .button-sign-up {
    border: 2px solid white;
}

#call-to-action h3 {
    margin: 0;
}

#call-to-action div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* daniel a */