@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #393939;
}

::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

html {
    scrollbar-color: #ffffff #393939;
    scrollbar-width: thin;
}

body {
    position: relative;
    margin: 0;
    font-family: "Source Sans Pro";
    color: white;
    background: #000000;
    font-weight: 200;
    text-shadow: 0px 0px 5px black;
    width: 100vw;
    height: 100vh;
}

.card {
    position: relative;
        padding: 32px;
        background: #080808;
        margin: 64px;
        height: 480px;
        width: 360px;
        border: white 1px solid;
        border-radius: 32px;
        transition: width 0.5s ease, height 0.5s ease;
}

.card-expanded {
    width: 424px;
    height: 544px;
}

.card-title{
    position: absolute;
    top:32px;
    left:32px;
    font-size: 32px;
    font-weight: 800;
}

.card-link{
    position: absolute;
    top:96px;
    left:32px;
    color:white;
    font-size: 32px;
    animation: loadIn 0.5s ease;
}

.card-link-destroy{
    animation: loadOut 0.5s ease;
}

.card-icon{
    position: absolute;
    left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.card-icon-img{
    width:232px;
  height: 232px;
}
.card-type{
    position: absolute;
    bottom:48px;
    left:32px;
    font-size: 32px;
}
.card-specs{
    position: absolute;
    bottom:32px;
    left:32px;
    font-size: 16px;
    color:#929292;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
}


#home-link {
    position: absolute;
    top: 40px;
    right: 40px;
}

#home-link-a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
}

#home-icon {
    width: 32px;
    height: 32px;
}

@keyframes loadIn {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes loadOut {
    from{
        opacity: 1;
        transform: translateY(0px);
    }
    to{
        
        opacity: 0;
        transform: translateY(-10px);
    }
}