* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    transition: all 0.75s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-image: url('assets/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container .content {
    position: absolute;
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  
}

.container .content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}   

.container .content .prev {
    position: absolute;
    top :0px;
    left: 20px;
    background-color: rgba(0,0,0, 0.1);
    padding: 30px 20px;
    border-radius: 5px;
    border : 1px solid #fff;
    margin-right: 10px;
    cursor: pointer;    
    color: #fff;
}

.container .content .next {
    position: absolute;
    border : 1px solid #fff;
    top :0px;
    right: 20px;
    background-color: rgba(0,0,0, 0.1);
    padding: 30px 20px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    color: #fff;    
}
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.container .text {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    bottom :300px;
    left: 20px;
    right: 20px;
    text-align: center;
}   