@import url(https://fonts.bunny.net/css?family=barlow:400,500,600);

* {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', serif;
    font-weight: 400;
}

.bold {
    font-weight: 600;
}

h1 {
    font-weight: 500;
}

body {
    background-color: #f2f2f2;
    height: 90vh;
    min-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* background-color: #FF8C69; */
    background-color: #f8cbad;
    padding: 80px 20px;
}

.left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 100px;
}

.right {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 0px 150px 0px 50px;
}

.header {
    margin-bottom: 35px;
}

ul, li {
    display: block;
}

li {
    padding: 3px 0px;
}

#link {
    margin-top: 10px;
}


a, a:active, a:hover, a:visited, a:focus {
    text-decoration: underline;
    color: #1a1a1a;
}

@media only screen and (max-width: 1200px) {
    main {
        background-color: initial;
        flex-direction: column;
        flex-wrap: nowrap;
        /* background-color: #FF8C69; */
        background-color: #f8cbad;
        width: 100%;
        max-width: 475px;
        min-height: 100%;
        justify-content: space-evenly;
    }
    .left, .right {
        padding-left: 0;
        padding-right: 0;
        /* background-color: #FF8C69; */
        background-color: #f8cbad;
    }
    .left {
        padding-top: 20px;
    }
  }