html, body{
    margin: 0;
    font-family: "Poppins", sans-serif;
    /* background-color: #765c28; */
    cursor: url(assets/cursor.png), auto;
    scroll-behavior: smooth;
}


h1{
    font-family: 48px;
    
}

h3{
    font-size: 56px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 66px;
}

h4{
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
}

p {
    font-size: 16px;
    line-height: 28px;

}

.blank{
    margin-top: 200px;
}

.button{
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    border: 1px solid #000000;
    padding: 8px 48px 8px 48px;
    color: #000000;
    transition: .5s;
}

.button:hover{
    background-color: #000000;
    color: #ffffff;
}

.main-container{
    /* background-color: aquamarine; */
    width: 90%;
    margin: 0 auto;
}

.intro-section{
    margin: 0 auto;
    width: 75%;
    text-align: center;
}

.project{
    cursor: pointer;
    transition: transform .2s;

}

.project:hover{
    transform: scale(1.05);
}

.project-section p {
    color: #c1c1c1;
    margin-bottom: 0px;
}

.project-line{
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
}

.project-image{
    background-color: tomato;
    width: 424px;
    height: 300px;
}

.case-section{
    margin-top: 150px;
}

.case-section p {
    color: #c1c1c1;
    margin-bottom: 0px;
}

.case-line{
    margin-top: 50px;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 100px;
}

.case{
    /* background-color: aqua; */
    width: 424px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
}

.case a{
    margin-top: auto;
    align-self: flex-start;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%; /* Full width */
    height: 80%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #888;
    width: 85%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }