@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, Helvetica, sans-serif;
}
.item1{
    display: flex;
    flex-direction: column;
    background-color: #1F2937;
}
.item1 > .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.item1 > .header > div{
    flex: 1 0;
    margin-left: 256px;
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 900;
}
.item1 > .header > ul{
    list-style: none;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex: 1 0;
    margin-right: 256px;;
    font-size: 24px;
}
.item1 > .header > ul a{
    text-decoration: none;
    color: #E5E7EB;
    font-size: 18px;
}
.item1 >.hero-container {
    display: flex;
    justify-content: space-between;
    margin: 128px 256px;
}
.item1 >.hero-container > .hero-left {
    display:  flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 32px;
}
.item1 >.hero-container > .hero-right {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    background-color: #E5E7EB;
}
.item1 >.hero-container > .hero-left > .hero-main-text {
    font-size: 48px;
    font-weight: 900;
    color: #F9FAF8  
}
.item1 >.hero-container > .hero-left > .hero-secondary-text {
    font-size: 18px;
    color: #F9FAF8;
    margin-block: 8px;
}
.item1 >.hero-container > .hero-left > button {
    background-color: #3882F6;
    color: #F9FAF8;
    width: fit-content;
    padding-inline: 32px;
    padding-block: 8px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
        &:hover{
            background-color: #689ff8;
        }
}
.item2{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item2 > .information-header-text{
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    margin-block: 64px;
}
.item2 > .gallery{
    display: flex;
    justify-content: center;
    gap: 64px;
}
.item2 > .gallery > .gallery-item{
    display: flex;
    flex-direction: column;
    width: 180px;
    margin-bottom: 128px;
}
.item2 > .gallery > .gallery-item > .picture{
    border: 4px solid #3882F6;
    height: 180px;
    width: inherit;
    border-radius: 16px;
}
.item2 > .gallery > .gallery-item > .picture-caption{
    text-align: center;
    margin-top: 8px;
}
.item3{
    display: flex;
    background-color: #E5E7EB;
}
.item3 > div  {
    margin: 128px 256px;
    font-size: 36px;
    font-weight: lighter;
    display: flex;
    flex-direction: column;
}
.item3 > div > p {
    font-size: 18px;
    font-weight: bold;
    align-self: flex-end;
}

.item4{
    display: flex;
    background-color: #F9FAF8;
    justify-content: center;
}
.item4 > .call-to-action-container{
    background-color: #3882F6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 128px 256px;
    flex: 1;
    border-radius: 8px;
}
.item4 > .call-to-action-container > button{
    background-color: #3882F6;
    color: #F9FAF8;
    outline: 1px solid #F9FAF8;
    width: fit-content;
    height: fit-content;
    margin: 32px;
    padding: 8px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
        &:hover{
            background-color: #689ff8;
        }
}
.item4 > .call-to-action-container > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.item4 > .call-to-action-container .call-to-action-top-text{
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 900;
    margin-top: 32px;
}
.item4 > .call-to-action-container .call-to-action-bottom-text{
    font-size: 18px;
    color: #F9FAF8;
    margin-block: 8px;
    margin-bottom: 32px;
}

footer{
    text-align: center;
    padding: 32px;
    font-size: 18px;
    color: #F9FAF8;
    background-color: #1F2937;
}