body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: white;
}

nav{
    max-width: 100vw;
    height: 110px;
    background-color: rgb(214, 57, 57);
    margin-top: -20px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo{
    padding-left: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style-type: none;
}

nav ul li{
    display: inline-flex;
    padding-right: 20px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 100px;
    transition: background 0.5s;
}

nav ul li a:hover{
    background: black;
}

header{
    background: radial-gradient(rgb(145, 4, 4),rgb(241, 234, 234));
    height: 85vh;
    max-height: 100vh;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}

header img{
    position: absolute;
    right: 150px;
    top: 50px;
    border-radius: 100px;
}

header .intro{
    position: absolute;
    left: 90px;
    top: 200px;
    width: 500px;
    font-size: larger;
}

.objectives{
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    padding-top: 10px;
}

.abilities .title{
    text-align: center;
    padding-top: 10px;
}

.abilities .last{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.last ul{
    display: flex;
}

.last ul li{
    display: inline-flex;
    padding-right: 20px;
}
.intro span{
    color: rgb(129, 41, 9);
    font-size:xx-large;

}
