
html, body{
    background-color: lightblue;
    margin: 0;
    padding: 0;
    height: 100%;
}

aside{
    width: 7%;
    text-align: center;
    height: 100vh;
    background-color: #F0b9c2;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 1.5vw;
}

nav a{
    font-weight: bold;
    text-decoration: none;
}
a:hover{
    color: lightblue;
    text-decoration: underline;
}
#wrapper{
    margin-left: 12%;
    margin-right: 12%;
}

header{
    background-color: #F0b9c2;
    width: 50%;
    margin: auto;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;

}

header img{
    display: block;
    max-width: min(80vw, 960px);
    width: 100%;
    height: auto;
    margin: 0 auto;
}

main{
    margin-left: 12%;
    margin-right: 12%;
}
.iframe-wrapper{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.resume{
    aspect-ratio: 17 / 22;
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
h2{
    text-align: center;
}
.text-image-left{
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.text-image-left img{
    max-width: 400px;
    height: auto;
    flex-shrink: 0;
}

.text-image-left p{
    flex: 1;
}
.text-image-right{
    padding: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.text-image-right img{
    max-width: 400px;
    height: auto;
    flex-shrink: 0;
}

.text-image-right p{
    flex: 1;
}