* {
    font: roboto;
    padding: 0;
    margin: 0;
}

header, #copyright {
    background-color: #1F2937;
}

header {
    padding: 10px;
    display: flex;
    flex-direction: column;

}

.logo-text {
    font-size: 24px;
    color: #F9FAF8;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin: 10px;
}

nav ul {
    list-style-type: none;
    margin: 10px;
    padding: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

nav ul li {
    display: inline;
    padding: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #E5E7EB;
    font-size: 18px;
}

nav ul li a:hover {
    color: peru;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header #hero {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    margin: 10px;
}

#hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#hero-content button {
    padding: 10px;
    margin: 10px;
    background-color: peru;
    color: white;
    border: none;
    border-radius: 5px;
}

#hero-content button:hover {
    background-color: greenyellow;
    color: black;
    size: 20px;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

header #hero h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

header #hero p {
    font-size: 18px;
    color: #E5E7EB;
}

header #hero img {
    width: 300px;
    height: 300px;
    display: flex;
    flex: 1;
}

#feature {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

#feature h2 {
    font-size: 50px;
    color: blue;
}

#features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#toolbox,
#rocket,
#mentorship,
#community,
#personalised{
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

#toolbox,
#rocket,
#mentorship,
#community,
#personalised p{
    font-style: italic;
}

#testimonial {
    background-color: #E5E7EB;
    font-size: 36px;
    font-style:  italic;
    color: #1F2937;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;
}

#testimonial h2 {
    font-size: 50px;
    color: blue;
    padding: 10px;
    font-style: normal;
}

#testimonial-1 img,
#testimonial-2 img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#action {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex: 1;
    height: 25vh;
}

#call-to-action{
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 20px;
    font-style: italic;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#desc {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 50%;
}

#call-to-action button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 18px;
    font-style: italic;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 50px;}
#call-to-action button:hover {
    background-color: #F9FAF8;
    color: #3882F6;
    font-size: 20px;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

#copyright {
    color: #E5E7EB;
    width: 100%;
    height: 50px;
    text-align: center;
    margin: 10px, 0, 0, 0;
    padding: 10px;
    align-content: center;
}