:root{
    --paragraph-weight: 400;
    --heading-weight: 700;

    --paragraph-size: 18px;
    --header-size: 32px;
    --subheader-size: 26px;

    --purple: #663366;
    --pink: #E5007D;
    --white:#FFFF;
}

* {
    padding: 0;
    margin: 0;
}

header {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100vw;
    padding: 8px 0;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: var(--subheader-size);
    background-color: var(--white);
    font-weight: var(--heading-weight);
    align-items: center;
    list-style-type: none;
    z-index: 100;
    font-family: "roboto condensed" ;
  }
  header #menu {
    display: flex;
  }
  header #logo {
    left: 0;
    width: 4em;
    -o-object-fit: cover;
    object-fit: cover;
    height: 3em;
    position: relative;
    padding-top: 12px;
    margin: 0 50px;
  }
  header #dutch-flag {
    right: 0;
    position: relative;
    width: 3em;
    margin-right: 50px;
  }
  header #dutch-flag:hover {
    cursor: pointer;
  }
  header #main-menu {
    display: flex;
    align-items: center;
  }
  header #main-menu a {
    color: var(--purple);
    text-decoration: none;
  }
  header #main-menu :hover {
    color: var(--pink);
  }
  header #dropdown-menu {
    display: none;
    position: absolute;
    width: 243px;
    left: 22vw;
  }
  header #dropdown-menu ul:first-child {
    background-color: transparent;
    color: transparent;
    font-size: 2px;
    font-size: 0px;
    padding: 6px 0;
  }
  header #dropdown-menu ul a:last-child {
    padding-bottom: 9px;
  }
  header #dropdown-menu ul {
    padding: 0;
    background-color: var(--pink);
    color: var(--white);
    cursor: pointer;
  }
  header #dropdown-menu a {
    background-color: var(--pink);
    color: var(--white);
    text-decoration: none;
    display: flex;
    width: 100%;
    margin: 0 !important;
    gap: 0 !important;
    justify-content: center;
    padding: 7px 0 !important;
  }
  ul:hover header #dropdown-menu a:hover {
    color: var(--pink) !important;
    background-color: var(--white) !important;
  }
  header #dropdown-menu ul a:hover {
    background-color: white;
    width: 100%;
  }
  header #dropdown-menu ul:first-child:hover {
    color: transparent;
    background-color: transparent;
  }
  header #dropdown-button:hover #dropdown-menu {
    display: flex;
    text-align: center;
    flex-direction: column;
  }
  
  header a{
    margin: 0 1rem;
  }
main{
    margin: 50px;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.description {
    display: flex;
    flex-direction: column;
}

.Container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 13px 0 0;
}

.Scenario {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #663363;
    padding: 14px;
}

.Objective {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -0.2em;
    border: 3px solid #663363;
    padding: 34px;
}

.Objective h2 {
    margin: 0 0 15px 0;
}

h1 {
    color: #663363;
    font-size: 2em;
    margin-bottom: 10px;
    align-self: center;
}

h1+p {
    align-self: center;
    margin-bottom: 50px;
    max-width: 1000px;
}

h2 {
    color: #663363;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

section + h2 {
    margin-top: 3em;

}

p {
    margin-bottom: 10px;
    max-width: 600px;
}

li {
    max-width: 600px;
}

pre, .command-answer {
    background-color: #e6e6e6;
    padding: 10px;
    border-radius: 5px;
    display: block;
    margin: 1rem 0;
    min-height: 1em;
}

code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #e6e6e6;
    padding: 2px 4px;
    border-radius: 3px;
}

ul, ol {
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

strong, label {
    color: #000;
}

hr+h2 {
    margin-top: 2rem;
}

hr{
    margin-top: 3rem;
}
section {
    margin-left: 2rem;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px 0 50px 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button, input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 0px;
    background-color: var(--pink);
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

:is(button, input[type="submit"]):hover{
    background-color: var(--purple);
}

pre {
    background-color: #e6e6e6;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

code.command-answer {
    font-family: 'Courier New', Courier, monospace;
    display: block;
    white-space: pre-wrap;
}

.button-secondary {
    background-color: #f0ad4e;
}

.button-secondary:hover {
    background-color: #ec971f;
}
