@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");


:root {
    --orange: rgb(240, 132, 0);
    --beige: #f9f2e0;
    --blue: #001B25;
    --light-orange: rgba(240, 132, 0, 0.7);
    --extra-light-orange: rgba(240, 132, 0, 0.3);
    --background-color: #f9f2e0
}

body {
	font-family: 'Poppins' , sans-serif;
	--webkit-font-smoothing: antialiased;
	background: var(--background-color);
	color: #001B25;
    height: 100%;
    margin: 0;
    padding-top: 1px; /*disable margin-collpasing*/
}

ul {
	list-style: none;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

h1{
	font-size: 30px;
    text-align: center;
    color: var(--blue)
}

h2{
	margin-top: 20px;
    color: var(--orange);
}

h4{
	margin-top: 10px;
    margin-left: 5px;
    margin-bottom: 5px;
}

a{
	color: var(--blue);
	text-decoration: underline;
}

p {
	margin: 0.5rem 0;
}

img {
	width: 100%;
}

ul {
    list-style-type: disc; /* Set the bullet style (disc, circle, square, etc.) */
    margin-top: 5px; /* Remove default margin */
}

li {
  margin-bottom: 5px; /* Adjust spacing between list items */
}

.header-tutorial {
	width: 100%;
	position: fixed;
    min-height: 100px;
    background-color: var(--beige);
	text-indent: 5px;
    display: flex;
    margin-top: -1px;
    z-index: 1000;
}

.header-tutorial-top {
    margin: auto 0;
    margin-left: 5%;
}

.header-tutorial-top img {
    margin: 10px;
	width: 145px;
}

.header-tutorial-content {
    color: var(--blue);
    margin: auto 0;
    text-align: center; 
    margin-left: 50px;
}

.body-tutorial {
    width: 75%;
    margin-left: 12.5%;
    margin-top: 130px;
}

.steps {
    margin-top: 20px;
}

.table-of-content {
    text-decoration: underline;
}

.video-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
}
 
video {
    /* width: auto;  */
    margin: 0 auto;
    display: block; 
    margin-top: 20px;

}

.page-down {
	background-color: var(--blue);
    margin-top: 10px;
	display: flex;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-image {
    width: 120px;
    margin: 10px;
}

.questions-email {
    color: var(--beige);
    margin: auto 0;
    margin-left: 20px
}


@media (max-width: 750px){
    .header-tutorial {
        width: 100%;
        position: fixed;
        min-height: 80px;
        background-color: var(--beige);
        text-indent: 5px;
        display: flex;
        margin-top: -1px;
        z-index: 1000;
    }

    .header-tutorial-top {
        margin: auto 0;
        margin-left: 0px;
    }

    .header-tutorial-top img {
        width: 90px;
        height: 50px;
        margin: 0px
    }

    .header-tutorial-content {
        color: var(--beige);
        margin: auto 0;
        text-align: center; 
        margin-left: 20px;
    }

    .body-tutorial {
        width: 75%;
        margin-left: 12.5%;
        margin-top: 100px;
    }

    h1{
        font-size: 28px;
        text-align: center;
        color: var(--blue);
        margin-right: 10px;
    }

    .questions-email {
        color: var(--beige);
        margin: auto 0;
        margin-left: 0px;
        margin-right: 5px;

    }

    .footer-image {
        width: 90px;
        margin: 10px;
    }
}

@media (max-width: 400px) {
    .header-tutorial {
        width: 100%;
        position: fixed;
        min-height: 80px;
        background-color: var(--beige);
        text-indent: 5px;
        display: flex;
        margin-top: -1px;
        z-index: 1000;
    }

    .header-tutorial-top {
        margin: auto 0;
        margin-left: 0px;
    }

    .header-tutorial-top img {
        width: 90px;
        height: 50px;
        margin: 0px
    }

    .header-tutorial-content {
        color: var(--beige);
        margin: auto 0;
        text-align: center; 
        margin-left: 5px;
    }

    .body-tutorial {
        width: 90%;
        margin-left: 5%;
        margin-top: 100px;
    }

    h1{
        font-size: 24px;
        text-align: center;
        color: var(--blue)
    }

    .questions-email {
        color: var(--beige);
        margin: auto 0;
        margin-left: 0px;
        margin-right: 5px;

    }

    .footer-image {
        width: 80px;
        margin: 10px;
    }
}