@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=M+PLUS+1+Code:wght@100..700&display=swap');

html {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

body {
    margin: 0;
    font-family: "Geist Mono", "M PLUS 1 Code";
}

img {
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: auto;
  }

.box {
    position: relative;
    border: 2px solid black;
    background-color: white;
    padding: 45px;
}

.box.bigger {
    padding: 75px;
}

.table {
    position: relative;
    display: table;
}

a {
    color: #85a1b0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: black;
}

#icon > img {
    width: 100%;
    height: 177.5px;
    object-fit: cover;
  }

#name {
    color: gray;
    margin-bottom: 10px;
    font-size: 25px;
}