@font-face {
    font-family: 'Rubik';
    src: url(Rubik-VariableFont_wght.ttf) format('truetype');
    font-weight: 100 900;
}
p {
    font-weight: 500;
    color: #666666;
}
html, body{
    color: #666666;
    font-family: Rubik, Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}

body {
  background: linear-gradient(to bottom, #333333, #111111) fixed no-repeat;
  background-size: cover;
  background-color: #111111;
}

img {
    display: inline-block;
    width: 10vw;
    height: auto;

}
.project {
    padding: 5px;
    border-color: #222222;
    border-style: solid; 
    border-radius: 20px;
    min-width: 200px;
    background: rgba(0,0,0,0.1);
}
.project:hover{
    border-color: #333333;
    background: rgba(0,0,0,0.5);
    transform: scale(105%);
}

@media (max-width: 720px) {
    .project {
        width: 90vw;
        min-width: 200px;
    }
    img {
        width: 250px;
    }
}

button {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;  
    border-radius: 5px;
    background-color: #222222;
    margin: 5px;
    padding: 10px;
}