*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

html,body{
    height: 100%;
    width: 100%;
    
}

body::-webkit-scrollbar{
    display: none;
}

.container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    background-color: rgb(66, 66, 66);
    padding: 1%;
}

header{
    width: 100%;
    margin: 0 auto;
    padding: 1%;
    background-color: rgb(72, 0, 255);
    color: white;
}

.js-logo{
    height: 70px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

header>p{
    font-size: 22px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-family: cursive;
}

h1{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-family: 'Courier New', Courier, monospace, Times, serif;
    font-size: 50px;
    font-weight: bold;
}

h1 img{
    aspect-ratio: 1 / 1;
    width: 100%;
}

h2{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 15%;
    width: 100%;
}

p{
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-align: center;
    font-family: cursive;
    height: 35%;
    width: 100%;
    background-color: black;
    padding: 2%;
}

img{
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -ms-border-radius: 10px 10px 10px 10px;
    -o-border-radius: 10px 10px 10px 10px;
}

.card-wrapper{
    width: 300px;
    height: 400px;
    background-color: rgb(234, 234, 234);
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 10px 1px rgb(32, 32, 32);
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.card-wrapper:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.card-image{
    width: 100%;
    height: 50%;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}