* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url('img/foto.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    position: relative;
}
.profile {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.profile span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: rgb(38, 39, 15);
}

.profile img {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.search-bar {
    width: 400px;
    padding: 10px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 25px 0 0 25px;
    background: rgba(0, 0, 0, 0);
}
.search-button {
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 0 25px 25px 0;
    font-size: 18px;
}
a {
    text-decoration: none;
}
.shortcut-bar {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}
.shortcut-bar .shortcut {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: none;
    display: flex;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.shortcut-bar .shortcut:hover {
    background-color: rgba(38, 39, 15, 0.9);
}
footer {
    background-color: rgb(77, 79, 82);
    color: white;
    padding: 30px;
    text-align: center;
}