body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
}

.background-blur {
    position: fixed;
    top: 80px;
    left: 50px;
    width: 50%;
    height: 85%;
    background-image: url('./assests/img1.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.background-blur:hover {
    filter: none;
}

.background-blur1:hover {
    filter: none;
}

.background-blur2:hover {
    filter: none;
}

.background-blur3:hover {
    filter: none;
}

.starting {
    top: 15px;
    display: flex;
    flex-direction: row;
    gap: 280px;
    padding-left: 90px;
}

h5 {
    text-decoration: underline;
}

.background-blur1 {
    position: fixed;
    top: 60px;
    left: 50px;
    width: 50%;
    height: 85%;
    background-image: url('./assests/img3.jpeg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.background-blur3 {
    position: fixed;
    top: 60px;
    left: 50px;
    width: 50%;
    height: 85%;
    background-image: url('./assests/img4jpg.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.container {
    font-size: 18px;
    position: absolute;
    right: 80px;
    top: 68px;
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    height: 520px;
    width: 500px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    text-align: center;
}

.background-blur2 {
    position: fixed;
    top: 60px;
    left: 50px;
    width: 50%;
    height: 85%;
    background-image: url('./assests/img2.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

button {
    border-radius: 8px;
    border: none;
    background-color: brown;
    width: 100px;
    height: 40px;
    text-align: center;
    color: white;
}

.beach {
    border-radius: 8px;
    border: none;
    background-color: rgb(18, 164, 232);
    width: 100px;
    height: 40px;
    text-align: center;
    color: white;
}

.boat {
    border-radius: 8px;
    border: none;
    background-color: palevioletred;
    width: 100px;
    height: 40px;
    text-align: center;
    color: white;
}

.home {
    border-radius: 8px;
    border: none;
    background-color: lightseagreen;
    width: 100px;
    height: 40px;
    text-align: center;
    color: white;
}
/* Portrait orientation
@media (orientation: portrait) {
    .background-blur, .background-blur1, .background-blur2, .background-blur3 {
        width: 80%;
        height: 60%;
        top: 30px;
        left: 10%;
    }

    .container {
        width: 85%;
        height: auto;
        top: 50px;
        padding: 30px;
        right: 7.5%;
        font-size: 16px;
    }

    button, .beach, .boat, .home {
        width: 100px;
        height: 40px;
        font-size: 16px;
    }
}

/* Landscape orientation */
/* /