@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&family=Montserrat:wght@300;400;700&family=Quicksand:wght@400;500;700&family=Roboto:wght@300;400;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #2C3333;
}

.hr-line{
    width: 20%;
    border: none;
    border-top: 1px dotted lightgrey;
    border-width: 5px;
    margin: auto;
}

body{
    font-family: 'Quicksand', sans-serif;
}

.container{
    display: flex;
    height: 100vh;
}


.sidebox{
    background-color: #f9f9f9;
    width: 22%;
    padding: 20px;
}

.pro-pic{
    width: 200px;
    display: block;
    margin: auto;
    margin-top: 50px;
    border: 5px solid white;
    border-radius: 50%;
}

.side-name{
    font-family: 'Josefin Sans', sans-serif;
    text-align: center;
    padding: 20px 20px 0 20px;
}

.my-desc{
    padding: 5px 20px 20px 20px;
    font-weight: lighter;
    text-align: center;
}

.nav{
    padding: 20px;
}


.nav-list{
    list-style: none;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.nav-list a{
    text-decoration: none;
    transition-duration: 0.4s;
}


.nav-list a:hover{
    color: lightgray;
    transition-duration: 0.5s;
    cursor: pointer;
}


.copyright{
    padding: 20px;
    line-height: 1.5;
    text-align: center;
}

/* Main box */

.mainbox{
    width: 100%;
    display: flex;
}

.m-box-1{
    width: 80%;
    margin-top: 17.3%;
}

.big-title{
    margin: 0 50px 20px 50px;
    text-align: left;
    width: 85%;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 56px;
}

.sum-desc{
    width: 85%;
    margin: 0 50px 20px 50px;
    text-align: left;
    font-size: 24px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.5;
}

button{
    margin: 0 50px;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.5s;
    cursor: pointer;
}


.btn{
    font-family: 'Josefin Sans', sans-serif;
    background-color: white; 
    color: black; 
    border: 2px solid grey;
    border-radius: 10px;
}


.btn:hover {
    background-color: grey;
    color: lightgray;
  }
  

.btn-content {
    display: none;
    position: absolute;
    left: 21%;
    border-radius: 10px;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
}

/* Links inside the dropdown */
.btn-content a {
    color: black;
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.btn-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display:block;
}

.big-pic{
    margin-top: 150px;
    width: 95%;
}
