/* YHTEINEN SIVUN VÄRI*/
body {
    background-color: #7D5BA6;

}

/* YHTEINEN FONTTI */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* YHTEINEN NAVBAR */

.navbar ul {
    list-style-type: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    overflow: hidden;
    justify-content: center;
    display: flex;

}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    margin: 0 20px;

}

.navbar a :hover {
    background-color: hsl(0, 47%, 57%);
}

.navbar li {
    float: left;
}

/* Footer */

.footer {
    background-color: transparent;
    color: floralwhite;
    font-size: 20px;
    width: 100%;
    bottom: 0;
    position: absolute;
    text-align: center;
    padding: 20px, 0;
}

/* YHTEINEN LOGO */
.logo {
    position: absolute;

}

.logo img {
    height: 100px;
    margin-left: 20px;
    display: flex;

}

/* Etusivun tekstit */
.content {
    color: white;
    padding-top: 20px;
    text-align: center;
}

.content h2 {
    font-size: 50px;
}

/* CTA NAPPI */
button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    background-color: ivory
}

/* Etusivun kuva */
.etusivulogo img {
    width: 370px;
    height: 250px;
    float: center;
    border-radius: 10px;
    margin-top: 15px;
    border-style: solid;
    border-width: 5px;

}

/* Palvelut */
h1 {
    color: white;
    text-align: center;
}

p {
    color: white;
    text-align: center;

}