html{
    height: 100vh;
    width: 100vw;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    color: rgb(168, 168, 168);
}
.container{
    height: 51vh;
    width: 50.5vw;
    background: linear-gradient(49deg, #2d4de0 0, #9f71f0 30%, #fc6277 58%, #f8ef6f 95%);
    display: flex;
    align-items: center;
    justify-content: center;
     
    transition: 0.2s ease;
}
h2{
    position: relative;
    margin: 0px;
    bottom: 50px;
    transition: 0.2s ease;
}
h1{
    position: absolute; 
    transition: 0.2s ease;
}
h1:hover{
    font-weight: 1000;
    font-stretch: ultra-expanded;
}
h2:hover{
    color: #9f71f0;
    font-size: xx-large;
}
.card{
    display: flex;
    flex-direction: column;
    height: 50vh;
    width: 50vw;
    justify-content: center;
    align-items: center;
    background-color: rgb(14, 14, 14);
    transition: 0.2s ease;  
}
.container:hover{
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border-radius: 10px; 
    box-shadow: 1px 1px 10px 10px rgba(87, 87, 87, 0.3);
}
.card:hover{
    height: 49vh;
    width: 49.5vw;
    border-radius: 10px;    
}