@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playpen+Sans:wght@100..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
body {
    margin: 0;
    padding: 0;
    /*background: linear-gradient(#0F2043, #162F65);*/
    /*background: linear-gradient(#e4346f, #e07e1b);*/
    background: #fffab5;
    background: radial-gradient(circle, rgba(255, 250, 181, 1) 0%, #7ab8ff 100%);  
    height: 93vh;
    font-family: "DM Sans";
}
.maincontainer {
    width: 820px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    margin-top: 50px;
    border: 3px solid #E8AF30;
    background-color: #E8C766;
}
.navbar {
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 820px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /*border-bottom: 3px solid #E8AF30;*/
    background-color: #E8AF30;
;
}
.navbar a {
    text-decoration: none;
    color: #E7E6DD;
    font-weight: bold;
    font-size: large;
    padding: 20px;
}
.navbar a:hover {
    background-color: #E8C766;
}
.container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-gap: 10px;
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
}
/*THE LEFT CONTENT*/
.leftcontent {
    border-radius: 15px;
    height: 450px;
    border: 3px solid #E8AF30;
    background-color: #E7E6DD;
}
.info {
    height: 315px;
}
.info li {
    color: #7ab8ff;
}
.info a {
    color: black;
    text-decoration: none;
}
.avatar {
    display: flex;
    justify-content: center;
}
.avatar img{
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 3px solid #E8AF30;
}
/*THE RIGHT CONTENT*/
.rightcontent {
    border-radius: 15px;
    height: 450px;
    background-color: #E7E6DD;
    border: 3px solid #E8AF30;
    overflow: scroll;
}
.text {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}
h2 {
    color: #7ab8ff;
    width: 350px;
}
/*THE FOOTER*/
.footer {
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 820px;
    margin-top: 10px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top: 3px solid #E8AF30;
    background-color: #E8AF30;
}