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


body {
    height: 500vh;
    width: 99%;
    background-image: url("../img/background.png");
}

/*header styles*/
body > header {
    position: fixed;
    background: white;
    height: 30px;
    width: 100%;
    top: 0;
    z-index: 10;

}

body > header > h1 {
    position: relative;
    display: inline;
    font-size: 20px;
    font-weight: bolder;
    font-family: 'Roboto Mono', monospace;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

body > header > h1 > span {
    color: #FF2400;
}


body > header > nav {
    position: absolute;
    display: flex;
    right: 100px;
    top: 0;
}

body > header > nav > menu {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;


}

body > header > nav > menu > li {
    position: relative;
    display: block;
    padding-right: 10px;
    text-decoration: red;
    font-size: 12px;
    font-weight: bolder;
    font-family: 'Roboto Mono', monospace;
}

body > section {

    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    top : 50px;
    font-family: 'Roboto', sans-serif;
}

body > section > figure {
    position: relative;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;

}

body > section > div {
    position: relative;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 12px !important;
    color: rgba(60, 60, 60, 0.8);
}

body > section:nth-child(6) {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

body > section:nth-child(6) > p {
    position: relative;
    display: inline;
    height: 70px;
    top: 50px;
    font-size: 30px;
}

body > section:nth-child(6) > section {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-flow: row;
    top: 0;
    bottom: 0;
    margin: auto;


}

body > section:nth-child(6) > section > div {
    width: 30%;
    left: 0;
    right: 0;
    margin: auto;
}

body > section:nth-child(6) > section > div > figure {
    height: 60vh;
    width: 98%;
    left: 0;
    right: 0;
    margin: auto;
}

body > section:nth-child(6) > section > div > figure img {
    width: 40%;
    height: fit-content;
    left: 0;
    right: 0;
    margin: auto;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section>div>ul>li{
    list-style: none;
    padding: 10px;
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
    width: 60%;
}

footer {
    position: relative;
    color: #fff;
    height: 30px;
    padding: 10px;
    bottom: 0;
    background-color: red;
    font-family: 'Karla Medium', sans-serif;
    font-size: 20px;
}

footer > p {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    top: 0;
    bottom: 0;
    margin: auto;
}

footer > p > span:nth-child(3) {
    position: relative;
    width: fit-content;
    padding-left: 100px;
}


