* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Young Serif", serif;
}

.container {
    padding: 50px;
}

.section-one {
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.section-one__contact {
    background-color: orangered;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 10px;
}

.section-one__name {
    font-size: 60px;
}

.section-one__role {
    font-size: 30px;
    margin-top: 10px;
}

.section-two,
.section-three,
.section-four,
.section-five {
    margin-top: 20px;
}

.section-two__desc,
.section-three__desc,
.section-four__desc,
.section-five__desc {
    margin-top: 10px;
}

.section-three li,
.section-four li {
    list-style: none;
}

.section-three {
    background-color: #6462FD;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    height: 200px;
    vertical-align: top;
}

.section-four {
    margin-left: 5px;
    background-color: #FE7517;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
    height: 200px;
    vertical-align: top;
}

.section-five {
    background-color: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.section-five a {
    color: skyblue;
}

.contact-form {
    margin-top: 20px;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__submit {
    margin: 10px;
}

.contact-form__input {
    border: none;
    border-bottom: solid black 1px;
    padding: 5px;
}

.contact-form__textarea{
    border: solid black 1px;
    padding: 5px;
}

.contact-form__submit{
    background-color: orangered;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: none;
    font-family: "Young Serif", serif;
}