*{
    margin: 0;
    padding: 0;
    font-family:  'Poppins', sans-serif;;
    box-sizing: border-box;
    
}

a{
    text-decoration: none;
}
ul{
    list-style: none;

}

body{
    margin: 0px;
    padding: 0px;
    font-family:  'Poppins', sans-serif;
}
.container{
    width: 100%;
    height: 120vh;
    background: linear-gradient(110deg,#fdcd3b 60%,#ffed4b 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container .header h3{
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 20px;
    color: rgb(160, 85, 0);
}
img{
    width: 300px;
    height: 420px;
    margin-right: 5px;
}
.card{
    display: flex;
    flex-direction: row;
    width: 75%;
    margin: 50px 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 1);
    background-color: #fff;
    position: relative;
}
.card p{
    font-size: 1opx;
}
.header ul li{
    font-size: 15px;
    padding: 10px;
    display: flex;
    display: inline-block;
    margin-left: 20px;
    position: relative;
    border: 7px solid #5ca300;
    background-color: #5ca300;
    border-radius: 40%;
    
}
.header ul li a{
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.header ul li:hover{
    border: 7px solid #000;
    background-color: #000;
    border-radius: 40%;

}