@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    min-height: 100vh;
}

.card {
	max-width: 500px;
}

.card img {
    max-width: 300px;
}

.bg-laptop {
    background-image: url('../img/andrew-neel-cckf4TsHAuw-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-cat {
	background-image: url('../img/robert-stemler-aelBozQxUjo-unsplash.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Styles for tablets and mobile screens */
@media (max-width: 768px) {
    body {
        padding: 0;

    }

    main.container {
        padding: 0;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: none;
        height: auto;
        box-sizing: border-box;
    }

    h2 {
        font-size: 1.5rem;
    }
}
