@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-brand-color: #6B4498;
    --blue-brand-color: #2B3886;
}

/* Body */
body {
    font-family: source-sans-pro, serif;
    background-color: #f2f2f2;
    margin: 0;
    font-style: normal;
}

/* Container */
.container {
    margin: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 600px;
}

/* Marketing area*/
.marketing_area {
    padding: 10px;
    background: url("../images/Male Dumbbell Watch Zoom.png") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: right;
}

.marketing_title {
    width: 30%;
    border: 2px solid var(--blue-brand-color);
    border-radius: 20px;
    padding: 10px 20px;
    background: white;
    text-align: center;
    font-size: 26px;
    color: var(--purple-brand-color);
}

/* User Guide area */
.user_guide_area {
    color: black;
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user_guide_area .user_guide_directions {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.user_guide_area .user_guide_directions .directions_heading {
    width: 70%;
    color: var(--purple-brand-color);
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.user_guide_area .user_guide_directions .directions_heading ul {
    padding: 20px;
    color: var(--blue-brand-color);
    text-align: left;
    font-size: 18px;
    font-weight: normal;
    list-style-position: inside;
}

.user_guide_area .user_guide_directions .directions_image {
    width: 25%;
    align-items: flex-start;
}

.user_guide_area .user_guide_directions .directions_image img {
    border-radius: 20px;
    height: 200px;
}