* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 20px;
    font-family: "Amaranth";
    text-align: center;
}

.page-wrapper {
    border: solid 2px black;
}

.parent-banner {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    padding: 10px;
    background-color: rgba(255, 255, 200, 0.5);
}

.parent-banner img {
    width: 140px;
    height: 150px;
    border-radius: 50%;
}

.main {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f8f8f8;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}

.main section {
    padding: 10px;
}

footer {
    display: flex;
    height: 120px;
    flex-direction: column;
    justify-content: center;
    background-color: grey;
}

a {
    color: white;
}

/*
* Breakpoint at 600px width for a bigger base text size
*/

@media (min-width: 500px) {
    body {
      font-size: 20px;
    }
  }

/*
* Breakpoint at 800 px width for a two column layout
*/

@media (min-width: 800px) {
    .section-aside {
        width: 30%;
        border-right: 2px solid black;
        background-color: rgba(255, 255, 200, 0.5);
    }

    .parent-banner {
        gap: 0px;
        padding: 0px;
        border: 0px;
    }
    
    .parent-banner .section-aside {
        display: flex;
        padding: 10px;
        justify-content: center;
    }

    .parent-main, .parent-footer {
        display: flex;
    }

    .person_details, .main, footer {
        width: 70%;
    }
}