body {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100vh;
}

img {
    width: 100px;
    height: 150px;


}

/*header style*/
.header {
    display: flex;
    background-color: #1F2937;
    color: white;
    justify-content: space-around;
    align-items: center;

}


.header a {
    text-decoration: none;
    color: white;
}
.header a:hover{
    color: gray;
}

/*hero section style*/
.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1F2937;
    color: white;
    width: 100%;


}

.hero div {
    height: auto;
    width: 450px;
}

.hero p {
    width: 450px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: #f9faf8;
    width: 800px;
}

button {
    background-color: gray;
    padding: 8px 20px;
    border-radius: 10px;
    color: #Fff;
    font-weight: bold;
    font-size: small;
}
button:hover{
    background-color: #3882f6;
}

/*boxes style*/
#title {
    text-align: center;
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.boxes .item {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.boxes img {
    border: 4px solid #3882f6;
    border-radius: 20px;
    padding: 5px 20px;
    margin-bottom: 15px;
}

/*quote text style*/
.quote-text {
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    padding: 50px;
    justify-content: center;
    align-items: center;
    font-weight: lighter;

}

.quote-text #main-text {
    width: 800px;
    font-size: large;
    font-weight: 100;
}

.quote-text #quoted {
    width: 440px;
    font-weight: bold;
    display: flex;
    align-self: end;
    margin: 0;
    padding: 0;
}
/*reference*/
.reference{
    display: flex;
    align-items: center;
    justify-content: center;
}
.reference .container{
    display: flex;
    width: 900px;
    flex-direction: column;
    background-color: #3B82F6;
    color: white;
    padding: 16px;
    border-radius: 20px;
}
.button{
    display: flex;
    justify-content: end;
    padding-right: 70px;
}
/*footer*/
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #1F2937;
    margin-top: auto;
    color: #fff;
}
.hero h1,
.secondary-text,
button{
    margin-left: 25px;
}
