*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

header .logo{
    font-size: 20px;
}

header{
    background-color: #1F2937;
    color: white;
}


header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

header .container ul{
    display: flex;
    gap: 20px
}

#hero{
    background-color: #1F2937;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #F9FAF8;
}

#hero .container{
    width: 100%;
    display: flex;


}

.container .info{
    flex: 1;
}

#hero .container h1{
    font-size: 48px;
}

#hero .container p{
    font-size: 18px;
    margin-bottom: 10px;
}


.container .img{
    height: 250px;
    width: 20px;
    background-color: blue;
    background-image: url('https://i.pinimg.com/1200x/bd/e4/8c/bde48c5bd0864ce236d959c8f6f7d839.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    flex: 1;
}

#hero .container button{
    color: white;
    background-color: #3882F6;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    width: 100px;
    cursor: pointer;
}

#random{
    height: 80vh;
    text-align: center;
}

#random h2{
    margin: 20px 0;
    font-size: 34px;
    color: #1F2937;
    font-weight: bold;
}

#random .elems .elem .img{
    border: 4px solid #3882F6;
    height: 180px;
    border-radius: 10px;
}

#random .elems .elem p{
    color: #1F2937;
    margin-top: 10px;
}

#random .elems .elem{
    max-width: 180px;
}

#random .elems{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
}


#quote{
    height: 70vh;
    background-color: #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

#quote h2{
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    color: #1F2937;
}

#quote .q-container{
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

#quote .q-container h3{
    align-self: flex-end;
    margin-right: 30px;
    margin-top: 10px;
}


#action{
    height: 50vh;
    display: flex;
    align-items: center;
}

#action .container{
    width: 100%;
    background-color: #3882F6;
    border-radius: 10px;
    padding: 40px 100px;
    color: #F9FAF8;
}

#action .container .content{
    display: flex;
    justify-content: space-between;
}

.content button{
    background-color: #3882F6;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 5px 30px;
    font-weight: bold;
}

footer{
    background-color: #1F2937;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E5E7EB;
}