* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

h1 {
    color: white;
}

.full-screen {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

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

.content {
    position: relative; /* Add this to establish positioning context */
    width: 100%; /* Set a specific width if needed */
    height: 100%; /* Set a specific height if needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.content h1 {
    position: absolute;
    top: 25%; /* This positions the h1 33% from the top of the .content area */
    width: 100%; /* This makes the h1 width the same as its container */
    text-align: center; /* Centers the text horizontally */
}

.content a {
    display: block;
    margin: 100px auto;
    width: 250px;
    height: 54px;
    line-height: 54px;
    background: tomato;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    transition: .4s linear;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    outline: none;
}

.content a:hover, .content a:focus {
    background: green;
}

.overlay {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
}
