* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(211, 211, 211, 0.5);
    height: 100vh;
    width: 100vw;
}

nav {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 40px;
    justify-content: space-around;
    padding: 10px;
}

nav i {
    color: gray;
}

nav i:nth-child(1){
    color: rgba(255, 0, 0, 0.7);
}

main {
    width: 98%;
    height: calc(100vh-40px);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image {
    display: flex;
    width: 98vw;
    height: 85vh;
    background: url("../img/zoro.jpg") center center/cover;
    border-radius: 3%;
    box-shadow: 0 10px 10px 0 rgba(0,0,0, 0.75);
    flex-direction: column;
    justify-content: flex-end;
}

div {
    padding: 5px;
}

.name_and_age {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: whitesmoke;
}

.name_and_age h2:nth-child(2){
    padding-left: 10px;
}

.bio > p {
    color: white;
}

.options {
    display: flex;
    flex: auto;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.option {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgb(255, 0, 100);
}

.options .option:nth-child(2){
    color: rgb(0, 100, 255);
}

.options .option:nth-child(3){
    color: rgb(50, 255, 100);
    font-size: 1.3rem;
}

/* Desktop */

@media screen and (min-width:1025px) {
    nav{
        width: 50%;
        margin: auto;
    }
    main{
        width: 50%;
    }
    .image{
        width: 100%;
    }
}