@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;600&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: "Roboto Mono", monospace;
    color: #edf0f1;
    background-color: #23303C;
}

li {
    list-style: none;
}

.Heading h1 {
    font-family: "Roboto Mono"  monospace;
    font-weight: 600;
    color: #edf0f1;
    text-decoration: none;
    margin-right: auto;
}

li, a{
    font-weight: 400;
    font-size: 1rem;
    color: #edf0f1;
    text-decoration: none;
}

.Heading {
    display: flex;
    align-items: center;
    padding: 1.8rem 10%;
    background-color: #23303C;
}

.Navbar li {
    overflow: hidden;
    display: inline-block;
    padding: 0rem 1.1rem;
}


.Navbar li a:hover {
    color: #0088a9;
}

.Dropdown{
    float: left;
    overflow: hidden;
}

.Dropdown a {
    font-size: 1rem;
    border: none;
    outline: none;
    color: #edf0f1;
    padding: 0.95rem 1rem;
    background-color: inherit;
    font-family: inherit;
    margin: 0; 
}

.Dropdown_Content {
    display: none;
    position: absolute;
    min-width: 10rem;
    background-color: #23303C;
    box-shadow: 0rem 0.5rem 1rem 0rem rgba(0,0,0,0.2);
    z-index: 1;
}

.Dropdown_Content li a {
    float: none;
    color: #edf0f1;
    padding: 0.9rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
}

.Dropdown:hover .Dropdown_Content {
    display: block;
}

.Intro {
    display: flex;
    align-items: center;
    padding: 1rem clamp(1vh, max(1vh, 5vh), 20rem); 
    background-color: #293743;
}

img.Intro_IMG {
    border-radius: 2rem;
}

p.Intro_Paragraph {
    font-size: 1.2rem;
    line-height: 2rem;
    padding-left: 1rem;
}

.Pros {
    padding: 1rem 10rem;
    background-color: #354553;
}


.Pros h2 + .Pros p{
    display: flex;
    justify-content: center;
}

p.Pros_Paragraph {
    padding-top: 0.5rem;
    font-size: 1.2rem;
}

.Pros_Videos {
    display: flex;
    gap: min(1vh, 10rem);
    justify-content: space-around;
    padding: 1rem 0rem;
}

.video_1 p, .video_2 p {
    display: flex;
    justify-content: center;
    font-size: 20px;
}