*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
.header {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
}

.logo {
    width: 200px; 
    height: auto; 
}
.container {
    width: 100%;
    height: 100vh;
    background-color: rgba(35, 35, 35, 0);
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    padding-bottom: 200px; 
}

.content {
    text-align: center;
}
.content h1{
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    color: #b6b3b3;
    margin-bottom: 40px;
}

.content a {
    font-family: 'Jost', sans-serif;
    font-size: 23px;
    color: #b6b3b3;
    text-decoration: none;
    border: 2px solid #b6b3b3;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.content a:hover {
    background-color: #0c0b0b; 
    color: #918d8d; 
}

.background-clip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
