@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

h1,
h2,
h3,
p,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

body {
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.content {
    display: flex;
    flex-direction: column;
    /* stretch content so that header and footer are in place */
}

.link {
    cursor: pointer;
}

/* Header */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 100px;
    background-color: #1F2937;
    user-select: none;
}

.header .logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
}

.header ul {
    display: flex;
    gap: 32px;
}

.header a {
    font-size: 18px;
    color: #E5E7EB;
}

/* Title */

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    background-color: #1F2937;
    padding: 64px;
}

.title .small-image {
    background-color: gray;
    height: 250px;
    width: 500px;
}

.synopsis { 
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 32px;
}

.synopsis h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #1F2937
}
.synopsis p {
    font-size: 20px;
    font-weight: lighter;
    color: #1F2937
}

/* Info */

.split { 
    display: flex;
    flex-direction: row;
    align-items: left;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 0px;
    padding-right: 32px;
    gap: 32px;
}

.split .small-image {
    background-color: gray;
    height: 250px;
}
.info { 
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 32px;
}

.info h2 {
    font-size: 36px;
    font-weight: bolder;
    color: #1F2937
}
.info p {
    font-size: 20px;
    font-weight: lighter;
    color: #1F2937
}

.info .cards {
    display: flex;
    gap: 32px;
}

.info .illu {
    padding: 50px;
    border: black solid 3px;
    margin-bottom: 8px;
}

.code { 
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 16px;
    gap: 32px;
    background-color: rgb(214, 211, 211);
}

.code p {
    font-size: 20px;
    font-weight: lighter;
    color: #1F2937;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 4px;
}

.code .code {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 16px;
    border-radius: 8px;
}