html {
    box-sizing: border-box;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}
body{
    margin: 0;
    font-family: 'Roboto';
}
/* Header styling */
.header {
    display: flex;
    align-items: center;
    padding: 1rem 200px;
    gap: 30px;
    background-color: #1f2937;
    color: white;
    
}
.header .logo {
    font-size: x-large;
    font-weight: bold;
}
.header a {
    text-decoration: none;
    color: white;
}
.link.first-link {
    margin-left: auto;
}

/* hero part */
.hero-part {
    background-color: #1f2937;
    color: white;
    display: flex;
    gap: 2rem;
    padding: 4rem 200px;
}
.hero-part h1 {
    margin: 0;
}
.hero-part .text-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.hero-part button {
    background-color: #3882f6;
    padding: 5px 20px;
    border-radius: 5px;
    border: 2px rgba(255, 255, 255, 0) solid;
    color: white;
    font-weight: bold;
}

.hero-part button:hover {
    cursor: pointer;
    box-shadow: white 1px 1px 5px;
}
.hero-part button:active {
    border: 2px solid black;
}

.hero-part .text-part,
.hero-part .img-part {
    flex: 1;
}

.img-part {
    display: flex;
    align-items: center;
}

.img-part img {
    width: 100%;
    min-width: 200px;
}

/* middle-inf part */

.middle-inf h2 {
    text-align: center;
    color: #1f2937;
    font-size: 36px;
}
.box {
    width: 150px;
    height: 150px;
    background-color: #3882f6;
    border: #1f2987 solid 4px;
    border-radius: 7px;
}
.boxes-container p {
    width: 150px;
    text-align: center;
    color: rgba(0, 0, 0, 0.781);
}
.boxes-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
/* The quote part */
.quote-part {
    background-color: #e5e7eb;
    height: 300px;
    padding: 0 200px;
    text-align: center;
    align-content: center;
}
.quote {
    font-size: 36px;
    font-style: italic;
    font-weight: 0;
    color: #1f2937;
    margin-bottom: 0;
}
.quoter {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
    width: fit-content;
    margin-left: auto;
    margin-right: 8rem;
}
/* Call action part */
.call-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 200px;
    background-color: #3882f6;
    padding: 30px 100px;
    border-radius: 10px;
}
.call-action p {
    color: white;
    margin: 0;
}
.call {
    font-weight: bold;
    font-size: 1.5rem;
}
.call-action button {
    background-color: #3882f6;
    border-radius: 7px;
    border: white solid 2px;
    padding: 4px 15px;
    color: #fff;
    font-weight: bold;
}
.call-action button:hover {
    cursor: pointer;
    color: #3882f6;
    background-color: white;
}
.call-action button:active {
    box-shadow: white 0 0 5px;
}
/* footer part */
footer {
    background-color: #1f2937;
    color: white;
    padding: 30px 0;
    text-align: center;
}