body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: smooth;
}


h1 {
  font-size: 6rem;
  font-family: "Noto Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 1rem;
}

.box h2 {
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

section h2 {
    font-size: 5rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
}

h3 {
    font-size: 3rem;
}

p {
    font-size: 2rem;
}

.hero {
    height: 100vh;
    /*background-image: url('placeholder.jpg');*/
    background: linear-gradient(rgba(13, 81, 230, 0.5), rgba(125, 6, 204, 0.5));
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    width: 100%;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px);
}

.box {
    background: rgba(0, 0, 0, 0.3);
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.social-icons a {
    color: white;
    margin: 0 1rem;
    font-size: 3rem; /* Increased font size for social icons */
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    color: white;
    font-size: 2rem;
}

section {
    padding: 5rem 1rem;
    text-align: center;
}

section a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

#about {
    background-color: rgb(23, 26, 26);
    color: white;
}

#experience {
    background: linear-gradient(rgba(255, 196, 196, 0.5), rgba(255, 129, 129, 0.5));
}

.experience {
    margin-bottom: 5rem;
    border-radius: 10px;
    background: rgba(34, 34, 34, 0.8);
    color: white;
    padding: 1rem;
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.experience h3 {
    margin-bottom: 0.5rem;
}

.experience p {
    margin-top: 0;
    margin-bottom: 2rem;
}