<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background_tutorial">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <TextView
            android:id="@+id/tutorial_text_view"
            style="@style/TutorialTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:text="@string/tutorial_placeholder"
            android:textAlignment="center"/>

        <ImageView
            android:id="@+id/tutorial_image_view"
            android:layout_width="320dp"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tutorial_text_view"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="15dp"
            android:padding="2dp"
            android:scaleType="centerCrop"
            android:adjustViewBounds="true"
            android:src="@drawable/backgrounds_menu_grass"/>

    </RelativeLayout>

</RelativeLayout>