@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

header{
    display: flex;
    justify-content: space-around;
    background: #1F2937;
    width: 100%;
    padding-top: 20px;    
}

ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-logo{
    color: #F9FAF8;
    font-size: 24px;
    font-weight: bold;
}
.header-links{
    color: #E5E7EB;
    font-size: 18px;
}

.contents1{
    padding-top: 100px;
    background: #1F2937;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 60px;
}

.content-left-1{
    padding-left: 50px;
}


.hero-text{
    color: #F9FAF8;
    font-size: 48px;
    font-weight: bolder;
}

.hero-para{
    color: #E5E7EB;
    font-size: 18px;
    padding-bottom: 10px;

}
.button{
    background-color: #3882F6;
    border-radius: 10px;
    padding: 5px;
    width: 150px;
    border: solid #3882F6;
    color: #F9FAF8;
    font-size: 20px;
}

button:hover{
    background-color: #4d679b;
    border: solid #4d679b;
    transition: 1.5s;
}

img{
    height: 150px;
    width: auto;

}

.some-content{
    text-align: center;
    padding-top: 40px;
    font-size: 36px;
    font-weight: bolder;
    color: #1F2937;
}

.some-content-boxes{
    display:flex;
    justify-content: center;
    padding-top: 50px;
    gap: 50px;
}


.box{
    width: 180px;
    height: 180px;
    border: 4px solid #3882F6;
    border-radius: 15px;
}

.img-subtext{
    color: #3b3e42;
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
}

.contents-3{
    display: flex;
    background-color: #E5E7EB;
    justify-content: center;
    align-items: flex-end;
    margin-top: 60px;
}

.hero-quote{
    font-size: 36px;
    color: #1F2937;
    padding-bottom: 15px;
    padding-top: 150px;
    
}

.thor{
    color: black;
    font-size: 24px;

}

.space{
    height: 120px;
    background-color: #E5E7EB;
}

.content-4{
    padding: 100px;
}

.content-4-div{
    display: flex;
    align-items: center;
    padding: 80px;
    justify-content: space-evenly;
    background-color: #3882F6;
    border-radius: 10px;

}

.content-box-text{
    color: #F9FAF8;
    font-size: 24px;
}

.content-box-subtext{
    color: #E5E7EB;
    font-size: 18px;
}
.button-2{
    background-color: #3882F6;
    border-radius: 10px;
    padding: 5px;
    width: 150px;
    border: solid white;
    color: #F9FAF8;
    font-size: 20px;
}

.footer{
    display: flex;
    justify-content: center;
    padding: 30px;
    background-color: #1F2937;
    align-items: center;

}

.footer-text{
    color: #F9FAF8;
    font-size: 18px;
    
}