
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: cursive;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(
        90deg,
        rgba(2,0,36,1) 0%,
        rgba(65, 101, 12, 1) 35%,
        rgba(0, 24, 89, 1) 100%
    );
    overflow: hidden;
}

.wrapper{
    text-align: center;
}

.container{
    width: 300px;
    height: 200px;
    display: inline-block;
    border-radius: 20px;
    border: 5px solid #4a90e2;
    background: #87ceeb;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out,
                background 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out;
}

.text {
    font-weight: 900;
    font-size: 35px;
    line-height: 48px;
}

.subText{
    font-weight: 700;
    font-size: 16px;
    line-height: 14px;
}

.heading{
    height: 70px;
    color: #fff;
    text-align: center;
    vertical-align: top;
}

.name{
    height: 100px;
    background: #fff;
    font-size: 45px;
    text-align: center;
    overflow: hidden;
    max-width: 300px;
    transition: background 0.3s ease-in-out;
}