
body {
    font-family: 'Roboto', sans-serif;
}
header {
    background-color: #1f2937;
    height: fit-content;
    padding: 24px 64px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.logo {
    font-family: "Bitcount Prop Single", system-ui;
    font-weight: 900;
    font-size: 32px;
    color: aliceblue;
    
}

ul {
    display: flex;
    list-style: none;
    gap: 32px;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    font-size: 18px;
    color: gold;
}
a:hover {
    color: white;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    color: #f9faf8;
}

.hero-container>img {
    max-width: 60%;
    max-height: 280px;
    border-radius: 10px;
}

#title {
    font-size: 48px;
    font-weight: 900;
    color: #f9faf8;
}

.hero-text>p {
    font-size: 18px;
}

button {
    background-color: #3882f6;
    padding: 6px 14px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    margin-top: 4px;
    cursor: pointer;
}

button:hover {
    color: gold;
}

.items {
    background-color: azure;
    height: fit-content;
}

.items>h2 {
    font-size: 36px;
    color: #1f2937;
    font-weight: 900;
    text-align: center;
    padding-top: 8px;
    margin: 0;
}

.info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: fit-content;
   padding: 20px 32px;
   justify-content: center;
}

.services {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    height: 280px;
    width: 250px;
    border-radius: 10px;
    background-color: rgb(241, 236, 228);
    box-shadow: 0 0 5px 0px #1f2937;


}

figure:hover {
   transform: scale(1.1);
}

figure>img {
    max-width: 150px;
    padding: 4px 8px;
    border-radius: 15px;
}

span {
    font-weight: 600; 
    display: block;
    font-size: 17px;
    text-align: center;
}

 figcaption {
    text-align: center;
    padding: 4px 8px;
} 

.quote {
    height: fit-content;
    padding: 36px 72px;
    background-color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quote-text {
    font-size: 36px;
    font-weight: 300;
    color: #1f2937;
    padding: 0px 16px;
    margin: 0;
    font-style: italic;
}
.writer {
    align-self: flex-end;
    font-weight: 700;
    font-size: 24px;
    padding: 0;
    margin: 0;
}
.signup {
    height: 150px;
    background-color: aliceblue;
    padding: 12px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-container {
    background-color: blueviolet;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    min-width: 500px;
}

.signup-container>button {
    border: 2px solid white;
}

.signup-text {
    color: white;
}
.signup-text>h2,p {
    padding: 0;
    margin: 0;
}
footer {
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer>p {
    color: white;
    padding: 8px 2px;
}