@import url('https://fonts.googleapis.com/css2?family=Gugi&family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap');
* {
    box-sizing: border-box;
}

body {
    background-color: #50E3C2;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    padding: 20px;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #3B3B3B;
}
.h1 {
    font-family: 'Gugi', cursive;
    font-size: 1.5rem;
    color: #35917C;
    margin-bottom: 1.5rem;
}
.h2{
    font-family: 'Gugi', cursive;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.container {
    display: block;
    padding: 20px;
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100vh;
}

.section{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.section1{
    padding-left: 20rem;
}

.section1 .a1 {
    background-color: #50E3C2;
    height: 32rem;
    width: 26rem;
    position: relative;
}

.section1 .a1::after {
    content: '';
    height: 30rem;
    width: 26rem;
    position: absolute;
    right: -5rem;
    top: 1rem;
    background: url(../images/alanfrancis.jpg) no-repeat;
    background-size: contain;
}

.section1 .a1>div.a2 {
    position: absolute;
    top: 35%;
    left: -21rem;
    font-size: 3rem;
    text-align: right;
    font-family: 'Aldrich', cursive;
    line-height: 1.2;
}

.section2 {
    padding: 10rem;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
}

.section2 .aboutme .text{
    margin-bottom: 1.25rem;
}
.section2 .skills {
    width: 100%;
}
.section2 .skill-category {
    display: flex;
}
.section2 .skill-category div{
    width: 50%;
}
.section2 .skilllist{
    padding-left: 1rem;
}
.section2 .skilllist li{
    padding: 0.4rem 0;
}
.section4 .section-title{
    padding-right: 30px;
}