* {
    margin: 0;
    padding: 0;
    color: black;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: #472e35;
}

section {
    flex: 1;
    padding: 0 40px;
}

section h1 {
    font-weight: 700;
    margin: 20px 0;
    font-size: 50px;
    color: white;
}

section h2 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 30px;
    color: white;
}

section a {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.4);
    text-decoration: none;
}

section a img {
    width: 80px;
    height: 80px;
    border-radius: 10px 0 0 10px;
}

section a p {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    font-size: 20px;
}

section a:hover {
    background-color: rgba(255,255,255,0.6);
}

section a:hover p {
    font-weight: 700;
}