*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

body{
    background: rgb(62,51,51);
    background: linear-gradient(90deg, rgba(62,51,51,1) 22%, rgba(145,104,48,1) 100%);
}
.mainbox{
    text-align: center;
    justify-content: center;
}

.contents{
    display: flex;
    color: white;
    text-align: center;
    justify-content: center;
    background: rgb(62,51,51);
    background: linear-gradient(90deg, rgba(62,51,51,1) 22%, rgba(145,104,48,1) 100%);
    height: 150px;
    width: 100%;
}
.intro{
    width: 50%;
    text-align: center;
    padding: 30px;
    justify-content: center;
}

.options{
    justify-content: center;
    width: 50%;
    margin: 10px;
    padding: 30px;
}

.options a{
    padding: 30px;
    color: white;
    text-decoration: none;
    font-size: 24px;

}

.options a:hover{
    font-size: 25px;
    color: rgb(39, 184, 140);
    border-bottom: 5px solid black;
}
.picture{
    width: 50%;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin: auto;
}

.pic_container img{
  border-radius: 50%;
  width: 200px;
  height: 190px;
  border: solid white 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.tag_box{
    background-color: white;
    padding: 25px;
    display: inline-block;
    border-radius: 10px; 
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 400;
    font-style: normal;
    color: black;
    margin: 10px;
    justify-content: left;
    text-align: left;
    width: 80%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.tag_box h4{
    font-size: 1.5rem;
    justify-content: center;
    text-align: center;
}

.tag_box h5{
    font-size: 1rem;
}

.tag_box > ul{
    justify-content: left;
    text-align: left;
}

.footer {
    margin-top: 20px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    background: rgb(46, 1, 1);
    background: linear-gradient(90deg, rgba(75,59,59,1) 23%, rgba(201,146,71,1) 100%);
    color: black;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 0;
 }
 .footer li{
    display: inline-block;
    margin: 50px 20px 20px 20px;
 }

 @media only screen and (max-width: 965px){
    .options a{
        padding: 15px;
        font-size: 16px;
    }
    .small_greetings h3{
        font-size: 1.6rem;
    }
    .pic_container img{
        border-radius: 50%;
        width: 200px;
        height: 170px;
      }
      .description{
        width: 20%;
    }
 }

 @media only screen and (max-width: 757px){
    .contents{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin: auto;
        width: 100%;
        height: 100%;
        padding: 0px;
        margin: 0px;
    }
    .options{
        width: 100%;
        height: 50%;
        padding: 0px;
        margin: 20px 0 30px 0;
    }
    .intro{
        width: 100%;
        height: 50%;
        padding: 0px;
        margin: 20px 0 10px 0;
    }

 }
