body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.upper{
    background-color: #101624;

}
.header{
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px;
    height: 70px;
    gap: 25em;
}
.name{
    font-size: 24px;
    color: #FaF9F8;
    font-weight: bold;
}

a{
    text-decoration: none;
    color: white;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
    color: #E5E7Eb;
    font-size: 18px;
    display: flex;
    gap: 16px;
}

.hero{
    background-color: #000000;
    display: flex;
    justify-content: space-evenly;
    gap: 16em;
    padding: 8px;
}
.text{
    color: white;
    font-size: 18px;
}
.awesome{
    font-size: 48px;
    color: #F9FAF8;
}
img{
    height: 300px;
    width: 500px;
    border-radius: 10px;
    margin: 10px;
}
button{
    background-color: #3882F6;
    color: white;
    width: 150px;
    height: 50px;
    font-size: large;
    font-weight: bold;
    border-radius: 10px;
    border-color: white;
    cursor: cell;
}

.cards{
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 16px;
    margin: 10px;
}

.information{
    text-align: center;
    font-size: 36px;
    font-weight: bolder;
}
.card img{
    height: 350px;
    width: 300px;
}
.card-info{
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
}

.info p:first-child {
    font-weight: bolder;
    font-size: 20px;
}
.quote-section{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5E7E7;
}
blockquote{
    font-size: 36px;
    font-style: italic;
    color:  #1f2937;
}
.attributor{
    display: flex;
    justify-content: flex-end;
}

.call{
    display: flex;
    justify-content: center;}
.action{
    background: #3882F6;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    width: 600px;
    height: 150px;
    text-align: center;
    color: white;
}
.btn{
    width: 150px;
    margin: auto;
}
.now{
    font-weight: bolder;
    font-size: larger;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #101624;
    color: white;
    height: 70px;
    font-weight: bolder;
    font-size: 30px;
}