@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    display: flex;
    flex-direction: column;
    font-family: Roboto, sans-serif;
    margin: 0;
    min-height: 100vh;
}

.content {
    padding-left: 10%;
    padding-right: 10%;
    flex: 1;
}

.header, .intro, .footer {
    background: #1F2937;
    color: #F9FAF8;
}

.header {
    display: flex;
    height: 50px;
    font-size: 24px;
    align-items: center;
    justify-content: space-between;
}

.header .right {
    font-size: 18px;
    display: flex;
    gap: 25px;
}

a {
    /* this removes the line under our links */
    text-decoration: none;
    color: #E5E7EB;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    gap: 35px;
}

.intro .left, .intro .img-placeholder {
    width: 100%;
}

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

.title-subtext {
    margin-bottom: 10px;
    font-size: 18px;
    color: #E5E7EB;
}

.information {
    color: #1F2937;
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-top: 40px;
}

.info-container {
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    justify-content: space-evenly;
    gap: 40px;
    font-size: 18px;
    font-weight: 200;
    color:grey;
    margin-top: 40px;
    margin-bottom: 80px;
}

.info-pic {
    width: 170px;
}

.info-pic .img-placeholder {
    width: 100%;
    height: 170px;
    border: 4px, solid, #3882F6;
    border-radius: 15px;
    justify-self: center;
}

.footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.info-subtext{
    /* this removes the line under our links */
    text-decoration: none;
    color: grey;
}