#section1 {
    margin-left: 5%;
    margin-right: 5%;
}

#section1 a {
    font-family: 'Clash Display', sans-serif;
    font-size: 28px;
    position: relative;
    text-decoration: none;
}

#section1 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -15px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

#section1 a:hover::after {
    width: 100%;
}

.social-media-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

#section2 {
    margin-left: 2.5%;
    margin-right: 2.5%;
}