/* CSS reset start */

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    font-family: inherit;
  }
a{
    text-decoration: none;
}
a img {
    border: none;
}

button,
a {
    cursor: pointer;
    color: inherit;
}

textarea {
    resize: none;
}

button,
textarea,
select {
    appearance: none !important;
    border-radius: 0;
}

ol, ul, li {
    list-style:none;display:block;
}

/* CSS reset end */

body {
    background-image: url("./landing_bg.jpg");
    font-family: 'Poppins', sans-serif;
    color: #010252;
}

#root {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    padding: 0 50px;
    background-color: #010252;
    color: #fff;
    z-index: 10;
}

header .backArrow {
    font-size: 30px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-height: 100vh;
    width: 80%;
    padding-top: 20px;
}

.content h2 {
    width: 100%;
    border-bottom: 1px solid #010252;
    font-size: 40px;
}

.content div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content div h4 {
    font-size: 25px;
    margin-bottom: 20px;
}

.content div a {
    padding-left: 30px;
    font-style: italic;
}

.content div a:hover {
    text-decoration: underline;
}

.content div .iconAnchorContainer {
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
}

.content div .iconAnchorContainer .iconAnchors{
    width: 500px;
}