body{
    display: flex;
    justify-content: center;
    
    background-image: linear-gradient(to bottom, rgb(230, 160, 30), white );
    background-repeat: no-repeat;

    font-family: 'Courier New', Courier, monospace;

}


.container{
    
    background-image: url("texture.png");
    opacity: 0.95;
    width: 80vw;
    max-width: 600px;

    border-radius: 10px;
    margin: 30px;
    padding: 20px;

    box-shadow: 1px 1px 5px 2px rgb(220, 220, 220);

}

h1 {
    color: rgb(174, 94, 14);
    text-align: center;
    font-size: 20px;
}

h2{
    text-align: center;
    font-size: 18px;
}

img{
    display: flex;
    justify-self: center;
    width: 110px;
    border-radius: 50%;
}

#birth-details{
    display: grid;
    grid-template-columns: 50% 50%;

    text-align: center;
    font-size: 14px;
    
}

#other-details{
    font-size: 14px;
}
ul, ol {
    list-style-position: inside;
}

a{
    text-align: center;
    text-decoration: none;
    color:rgb(174, 94, 14);
}

a:hover{
    text-decoration: double;
}

@media (max-width:600px) {
    h1{
        font-size: 16px;
    }
    h2{
        font-size: 14px;
    }
    h3{
        font-size: 12px;
    }
    li,p{
        font-size: 10px;
    }
    .container{
        margin: 2px;
    }

    img{
        width: 70px;
        border-radius: 50%;
    }
    ul{
        padding-left: 0px;
    }
    li{
        margin-bottom: 10px;
    }
    
}