body {
    background-color: #ffecd1;
}
html{
    scroll-behavior: smooth;
}
.topnav{
    display: flex;
    width: 100%;
    position: sticky;
    background-color: #ffecd1;
    height: 50px;
    font-size: 25px;
    font-weight: bold;
    justify-content: space-between;
    top: 0;
    z-index: 2;
    border-radius: 10px;
}
.left-hug{
    display: flex;
    align-items: center;
}
.right-hug{
    display: flex;
    align-items: center;
}
.icons{
    width: 40px;
}
.titles{
    font-size: 48px;
    font-weight: 600;
}
.main-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px;
    margin-top: 10%;
    border-radius: 10px;
    margin-bottom: 10%;
}
.border{
    border-bottom: black;
    border-style: solid;
    width: 200%;
    left: -50%;
    position: relative;
}
.containers{
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    margin-right: 25px;
    margin-left: 10px;
}
.top-container,
.bottom-container{
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
}
.side-box{
    flex: 1;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    align-items: center;
    margin-top: 10px;
}
.box-left-column{
    flex: 1;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    align-items: center;
    margin-top: 10px;
}
.top-box,
.bottom-box{
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    align-items: center;
}

.box-header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #656D4A; 
    color: #EDE0D4;
    z-index: 1;
    border-radius: 10px;
    box-shadow:
    4px 0 black,    /* right */
    -4px 0 black,   /* left */
    0 4px black,    /* bottom */
    0 -4px black;   /* top */
}
.box-content{
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}
.self-photo{
    width: 375px;
    border-radius: 100px;
    box-shadow:
    4px 0 black,    /* right */
    -4px 0 black,   /* left */
    0 4px black,    /* bottom */
    0 -4px black;   /* top */
}
.personal-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: #EDE0D4;
    align-items: center;
    position: relative;
    border-radius: 10px;
    z-index: inherit;
    box-shadow:
    4px 0 black,    /* right */
    -4px 0 black,   /* left */
    0 4px black,    /* bottom */
    0 -4px black;   /* top */
}
.text{
    font-size: 20px;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 0;
    font-weight: bold;
}
.icon-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 150px;
    height: 200px;
    align-items: center;
    position: relative;
    background-color: #EDE0D4;
    z-index: inherit;
    padding: 5px;
    border-radius: 10px;
    box-shadow:
    4px 0 black,    /* right */
    -4px 0 black,   /* left */
    0 4px black,    /* bottom */
    0 -4px black;   /* top */
}
.skill-icon{
    width: 40px;
    height: 40px;
}
.project-container{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    position: relative;
    padding: 5px;
    border-radius: 10px;
}
.project-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #EDE0D4;
    align-items: center;
    position: relative;
    width: 100%;
    border-radius: 10px;
    z-index: inherit;
    box-shadow:
    4px 0 black,    /* right */
    -4px 0 black,   /* left */
    0 4px black,    /* bottom */
    0 -4px black;   /* top */
}

.notification {
  position: fixed;
  top: 50%;
  left: 40%;
  padding: 15px 25px;
  background-color: red;
  color: white;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: none;
}
.contact_form{
    display: flex;
    width: 75%;
    flex-direction: column;
}

.form-inputs{
  --bg: var(--table-title-cl-shadow);
  box-shadow: -0.25rem 0.25rem black;
  border-radius: 5px;
  padding: 1px 10px;
  height: 20px;
  font-weight: 600;
}

.action-btn {
  --hover-bg: var(#656D4A);
  --hover-text: white;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  height: 30px;
  background: #656D4A;
  transition: 0.2s;
  margin-top: 15px;
}

body.modal-open{
  overflow: hidden;
}