@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

/*

.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.alumni-sans-pinstripe-regular {
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.alumni-sans-pinstripe-regular-italic {
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/


* {
    margin: 0;
    padding: 0;
    background-color: rgb(242,242,242);
    color: rgb(130, 130, 130);
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
}

a {
    color: rgb(248,153,135);
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 20px 0;
}

.info_content {
    font-weight: 500;
    padding-right: 20px;
}

.social{
    display: flex;
    justify-content: space-between;
    height: 50px;
}

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

.company_name {
    font-family: "Great Vibes", cursive;
    font-size: 65px;
    font-weight: 400;
    font-style: normal;
}

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

ul {
    display: flex;
}

li {
    list-style-type: none;
    margin: 0 10px;
}

.banner_image {
    width: 100%;
}

.intro {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 400px;
}

.intro_img {
    height: 400px;
}

.intro_text {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    padding: 30px;
    text-align: center;
}

.section_title {
    color: rgb(248,153,135);
    font-family: "Great Vibes", cursive;
    font-size: 57px;
    font-weight: 400;
    font-style: normal;
    margin-top: 100px;
    text-align: center;
}

/* Cards */
.cards {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    max-width: 100%;
}

.card {
    margin: 20px;
    text-align: center;
    width: 33%;
}

.card-img-top {
    width: 300px
}

.card-body {
    padding: 20px;
}

.card_title {
    color: rgb(248,153,135);
    font-family: "Great Vibes", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 27px;
}

.card-text {
    font-size: 18px;
}

.contact_info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-weight: bold;
}

footer {
    margin: 30px;
    text-align: center;
}