@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Roboto.ttf")
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: rgb(28, 31, 33);
    font-family: "Roboto", sans-serif;
}

.container {
    display: flex;
    align-items: center;
    height: 200px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    margin-top: 35vh;
}

.image_container img {
    max-width: 200px;
    margin-right: 20px;
}

.content {
    display: flex;
    height: 100%;
}

.content_item {
    display: flex;
    flex-direction: column;
    margin: 0px 20px;
}

.item_title {
    color: rgb(219, 0, 66);
    margin: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.content_item span {
    margin-bottom: 5px;
}

.content_item a {
    color: white;
    text-decoration: none;
}

.content_item a:hover {
    color: rgb(158, 158, 158);
}