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

img {
    max-width: 100%;
}

h1,
h2 {
    margin-bottom: 15px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 30px;
}

.header {
    background-color: #1f2937;
}

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

.header .logo {
    font-size: 24px;
    color: #f9faf8;
}

.header .navbar ul a {
    text-decoration: none;
    font-size: 18px;
    color: #E5E7EB;
}

.header .navbar ul {
    list-style-type: none;
    display: flex;
    gap: 1.4em;
    flex-wrap: wrap;
}

main .hero {
    background-color: #1f2937;
}

main .hero .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
}

main .hero .text {
    /* min-width: 200px; */
    flex: 1;
    margin-top: 30px;
}

main .hero .text h1 {
    font-size: 48px;
    font-weight: extra-bold;
    color: #f9faf8;
}

main .hero .text p {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 10px;
}

button {
    background-color: #3882f6;
    border-radius: 5px;
    padding: 5px 1.7em;
    border: none;
    color: #f9faf8;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
    width: 150px;
    opacity: 0.8;
    transition: 0.2s all;
    cursor: pointer;
    margin-bottom: 15px;
}

button:hover {
    opacity: 1;
}

.modal,
.modal2 {
    display: none;
    background-color: rgb(31, 31, 31, 0.96);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    overflow: auto;
}

.modal .container .box,
.modal2 .container .box {
    color: #fff;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 370px;
    padding: 40px;
    background-color: #282828;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.box .closeBtn {
    align-self: flex-end;
    cursor: pointer;
    color: #848484;
}

.box .closeBtn:hover {
    color: #fff;
}

.box h1 {
    align-self: flex-start;
}

.user {
    margin-top: 50px;
}

.gg-user {
    display: block;
    transform: scale(var(--ggs,1));
    box-sizing: border-box;
    width: 12px;
    /* height: 18px */
}

.gg-user::after,
.gg-user::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border: 2px solid
}
.gg-user::before {
    width: 8px;
    height: 8px;
    border-radius: 30px;
    top: 0;
    left: 2px
}
.gg-user::after {
    width: 12px;
    height: 9px;
    border-bottom: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    top: 9px
}

.gg-mail,
.gg-mail::after {
    display: block;
    box-sizing: border-box;
    height: 14px;
    border: 2px solid
}
.gg-mail {
    overflow: hidden;
    transform: scale(var(--ggs,1));
    position: absolute;
    width: 18px;
    border-radius: 2px
}
.gg-mail::after {
    content: "";
    position: absolute;
    border-radius: 3px;
    width: 14px;
    transform: rotate(-45deg);
    bottom: 3px;
    left: 0
}

.gg-lock {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 12px;
    height: 11px;
    border: 2px solid;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom: transparent;
    margin-top: -12px
}
.gg-lock::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 16px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px;
    left: -4px;
    top: 9px
}

input {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 30px 10px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    background-color: transparent;
    outline: none;
    color: #fff;
    transition: 0.5s all;
}

input:focus {
    border-bottom: 1px solid #ff7f50;
}

.reset-password {
    color: #848484;
    align-self: flex-end;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 15px;
}

.reset-password:hover {
    text-decoration: underline;
    color: #ff7f50;
}

.signup span,
.signin span {
    color: #7fb8e6;
    cursor: pointer;
    transition: 0.5s color;
}

.signup span:hover,
.signin span:hover {
    color: #3793df;
}

main .information h2 {
    font-size: 36px;
    font-weight: extra-bold;
    color: #1f2937;
    text-align: center;
    margin-top: 20px;
}

main .information .boxes {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    flex-wrap: wrap;

}

main .information .image {
    width: 140px;
    height: 140px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    border: 3px solid #3882f6;
    margin: 10px 0;
}

main .information .box {
    text-align: center;
    width: 140px;
}

main .quote {
    background-color: #e5e7eb;
}

main .quote .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 100px;
}

@media screen and (max-width: 600px) {
    main .quote .container {
        padding: 50px 30px;
    }
}

main .quote .text {
    font-size: 36px;
    font-weight: lighter;
    font-style: italic;
    color: #1f2937;
}

main .quote .footer {
    align-self: flex-end;
    font-size: 24px;
    font-weight: 900;
    color: #1f2937;
}

main .cta {
    background-color: #fff;
    padding: 100px 0;
}

main .cta .container {
    display: flex;
    border-radius: 8px;
    padding: 50px 100px;
    background-color: #3882f6;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

main .cta h3 {
    font-size: 24px;
    font-weight: extra-bold;
    color: #f9faf8;
    margin-bottom: 10px;
}

main .cta p {
    font-size: 18px;
    color: #e5e7eb;
}

main .cta button {
    border: 2px solid #fff;
    color: #f9faf8;
    align-self: flex-end;
 }

 footer {
    background-color: #1f2937;
    padding: 10px;
    text-align: center;
    color: #f9faf8;
    font-size: 18px;
    font-weight: 900;
}