.background {
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 60px;
}
.content {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 88%;
    margin-right: 6%;
    color: #e9e9e9;
}
.content p {
    font-size: 18px;
    margin-bottom: 5px;
}
.content h1 {
    font-family: Sahel-Black;
    font-size: 50px;
}
.content div {
    width: 60%;
    margin-right: 20%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}
.content div span {
    font-family: Sahel-Light;
    color: #000000;
    background-color: #e9e9e9a3;
    padding: 0px 10px;
    border-radius: 4px;
}
.content a {
    font-family: Sahel-SemiBold;
    color: #e9e9e9;
    padding: 8px 24px;
    text-decoration: none;
    border: 2px solid #e9e9e9;
    border-radius: 7px;
}
.content a:hover {
    color: #121212;
    background: #e9e9e9;
}
.bubbles img {
    width: 50px;
    animation: bubble 7s linear infinite;
}
.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -70px;
}
@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80vh);
        opacity: 0;
    }
}
.bubbles img:nth-child(1) {
    animation-delay: 2s;
    width: 25px;
}
.bubbles img:nth-child(2) {
    animation-delay: 1s;
}
.bubbles img:nth-child(3) {
    animation-delay: 3s;
    width: 25px;
}
.bubbles img:nth-child(4) {
    animation-delay: 4.5s;
}
.bubbles img:nth-child(5) {
    animation-delay: 3s;
}
.bubbles img:nth-child(6) {
    animation-delay: 6s;
    width: 20px;
}
.bubbles img:nth-child(7) {
    animation-delay: 1s;
    width: 35px;
}
@media screen and (max-width: 600px) {
    .background {
        margin-bottom: 40px;
    }
    .content {
        width: 86%;
        margin-left: 7%;
    }
    .content h1 {
        font-size: 38px;
        line-height: 50px;
    }
    .content div {
        width: 100%;
        margin-right: 0;
    }
    .content div span {
        font-size: 13px;
    }
}