* {
    margin: 0;
    padding: 0;
    font-family: "Arial";
    text-decoration: none;
}

.full-screen {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    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;
    z-index: 1;
    overflow: auto; /* Enable scrolling if content overflows */
    padding: 20px; /* Adding padding to create space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust the height of the content */
    text-align: center; /* Center align content */
}

h1 {
    font-size: 80px;
    color: #ffffff;
    margin: 0; /* Remove margin to prevent excessive spacing */
}

p {
    font-size: 20px;
    color: #ffffff;
    margin: 20px 0; /* Adjusted margin */
}

.firstRow,
.secondRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.firstRow .v5 {
    background: rgba(255, 70, 86, 0.380);
}

.firstRow a,
.secondRow a {
    display: block;
    margin: 10px; 
    width: 250px;
    height: 54px;
    line-height: 54px;
    background: #ff4655;
    text-align: center;
    color: #ececec;
    text-transform: uppercase;
    font-weight: 500;
    transition: .4s linear;
}
