body {
    font-family: 'Nerko One', cursive;
    background-color: #1a1a1a;
    color: #fff;
}

header {
    padding: 20px;
    text-align: center;
    background-color: #333;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#search-bar {
    padding: 10px;
    font-size: 16px;
    border-radius: 25px 0 0 25px;
    border: none;
    outline: none;
    width: 300px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 0 25px 25px 0;
    border: none;
    background-color: #ff4444;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #ff1a1a;
}

.student-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}

.student-profile {
    background-color: #292929;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 5px 5px 15px #111, -5px -5px 15px #333;
    width: 300px;
    max-width: 100%;
    text-align: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.student-profile p {
    margin: 5px 0;
}

.student-facebook a {
    color: #ff4444;
    text-decoration: none;
}

.student-facebook a:hover {
    text-decoration: underline;
}

.slogan-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: #ff4444;
    color: white;
    cursor: pointer;
}

.slogan-btn:hover {
    background-color: #ff1a1a;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    position: relative;
    bottom: 0;
    width: 100%;
}
