:root {
    --bg-color: white; /* Background Color */
    --accent-bg-color: #F5F5F5; /* Container color, for example the container under the title "Why spend time on complex frameworks when 90% of startsups fail?"*/
    --main-text-color: #363636; /* Text Color */
    --accent-text-color: white; /* Button text color */
    --accent-color: #4682B4; /* Accent Color (Pink) */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: "Urbanist";
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
}
  
::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-bg-color); 
    border-radius: 7.5px;
}

.paragraph-text-style {
    margin: 0;
    color: var(--main-text-color);
    font-size: 15px;
    line-height: 20px;
    font-style: normal;
    font-weight: 100;
    text-decoration: none;
}

.input-style {
    position: absolute;
    padding: 15px;
    width: 350px;
    height: 50px;
    background: #F4F5F6;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    box-sizing: border-box;
}

.btn-style {
    width: 250px;
    height: 50px;
    background: var(--accent-color);
    color: var(--accent-text-color);
    font-size: 15px;
    line-height: 18px;
    font-style: normal;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

header {
    position: relative;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 1200px;
    height: 75px;
    display: flex;
    align-items: center;
}

.tutorials-section {
    position: relative;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 1200px;
    display: flex;
    flex-direction: column; 
    align-items: left;
}

.tutorials-section .video-container {
    width: 340px; 
    display: flex; 
    flex-direction: column;
}

@media only screen and (max-width: 450px) {
    .video-container {
        width: 80vw;
    }
}