*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

a{
    text-decoration: none;
}
li{
    list-style: none;
}
.carousel{
    width: 100%;
}
.carousel-inner{
    width: 100%;   
}
.carousel-item{
    width: 100%;
    height: 100vh;
    position: relative;
}
.carousel-item img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.webpages{
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    padding:  5%;
    flex-wrap: wrap;
    color: red;
    height: 100%;
}

.webpages a .card{
    width: 300px;
    aspect-ratio: 1/1;
    background: #F8F8F8;
    border-radius: 20px;
    display: grid;
    place-items: center;
}

.webpages a .card img{
    width: 70%;
    height: auto;
}

@media only screen and (max-width: 700px) {
    .webpages a .card{
        width: 210px;
    }
    .webpages{
        padding: 20px;
        gap: 20px;
    }
}
@media only screen and (max-width: 492px) {
    .webpages a .card{
        width: 200px;
    }
}

@media only screen and (max-width: 462px) {
    .webpages{
        flex-direction: column;
        justify-content: space-evenly;
    }

}