@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter&family=Vina+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    border: 0;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../assets/logoHead.png);
    background-size: 50vw;
    background-position: center;
    background-repeat:repeat-x;
}

.card-group{
    max-width: 80vw;
    max-height: 70vh;
    box-shadow: 12px 12px 25px rgb(0, 0, 0, .212);
}

.card-link{
    cursor: pointer;
}

.card-img-top{
    width: 150px;
    height: 300px;
    object-fit: cover;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 20px;
}

.logo{
    font-family: 'Staatliches', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 50pt;
    color: #0780ae;
    text-decoration: none;
    -webkit-animation: fadeInLeft 1s both;
    -o-animation: fadeInLeft 1s both;
    -moz-animation: fadeInLeft 1s both;
    animation: fadeInLeft 1s both;
}

@media only screen and (max-width: 1024px) {

    body {
        background-size: 100vh;
    }

}

