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

p {
    margin: 0;
}

.main-block {
    width: 661px;
    height: 800px;
    background-color: #C4C4C4;
    font-family: "Roboto", "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.results, .repo_list {
  list-style: none; 
  margin: 0;       
  padding: 0;       
}

.block-search {
    width: 510px;
    height: 61px;
    margin-top: 30px;
    margin-bottom: 250px;
}
.search {
    width: 500px;
    height: 61px;
    background-color: white;
    font-size: 30px;
    border: none;
    border-radius: 5px;
    padding-left: 10px;
}

.seach_repo {
    width: 500px;
    height: 30px;
    background-color: #E3E3E3;
    border: 2px solid black;
    vertical-align: middle;
    padding: 10px 0 0 10px;
    font-size: 20px;
}

.seach_repo:hover {
    border: 2px solid #65CDF9;
    background-color: #65CDF9;
}

.repo_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.user_list {
    width: 503px;
    height: 81px;
    background-color: #E27BEB;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 20px;
    padding: 15px 0 0 15px;
    position: relative;
}

.cross {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 40px;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 2px;
  background: red;
  transform-origin: center;
}

.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}