@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #f2f7f5;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}

h1 {
    color: #fa5246;
    font-family: 'Righteous', serif;
    font-size: 6em; 
    text-shadow: .03em .03em 0 rgb(117, 124, 164);
    text-align: center;
    margin-top: 20px;
}

.search-container {
    margin-top: 20px;
}

.search-container input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-container button {
    padding: 10px;
    border: none;
    background-color: #fa5246;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.total-projects {
    margin-top: 20px;
    font-size: 18px;
}

.showcase-container {
    display: flex;
    align-items: space-around;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px;
}

.sub-container {
    display: flex;
    background-color: #fabdca;
    border: 2px solid #000;
    height: 250px;
    width: 300px;
    margin: 15px;
    position: relative;
}

.sub-container img {
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.title {
    margin: auto 15px;
    font-size: 19px;
    font-weight: bold;
    text-decoration: none;
    color: #475d5b;
    position: absolute;
    bottom: 60px;
}

.title:hover {
    color: #00473e;
}

.repo, .repo:visited {
    text-decoration: none;
    color: #475d5b;
}

.btn {
    width: 130px;
    height: 40px;
    color: #00473e;
    margin: 10px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: 2px solid #fa9e00;
    background: #faae2b;
    bottom: 5px;
}

.btn:hover {
    background: #f2f7f5;
    color: #faae2b;
}
