@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100;200;300;400;500;600;700&display=swap');

*{
    margin:0px;
    opacity: 1;
    animation-name: slideIn;
    animation-duration: .5s;
}
body{
    background: linear-gradient(to bottom, #f9efea, #f5ccb8);
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}
#bigTypeContainer{
    position: relative;;
    height: 100dvh;
    width:600px;
    overflow: hidden;
    float:left;
    animation-name: slideIn;
    animation-duration: 1s;
}
#bigType{
    font-family:"Arima";
    color: #242377;
    font-weight:700;
    font-size: 1500px;
    position:relative;
    top: -750px;
    left: -500px;
    
}
.content{
    position: relative;
    top: 550px;
    display:flex;
    left: -140px;
    animation-name: slideIn;
    animation-duration: .7s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    opacity: 0;

}
.content h2{
    font-family: Arima;
    color: #242377;
    font-weight: 300;
    font-size: 60px;
    position: relative;
    line-height:1.1;
    margin-right: 20px;
}
#arrow{
    font-size: 200px;
    color: #242377;
    display: inline-block;
    position: relative;
    top: 50px;
    line-height: 0.6em;
    transition: .2s;
    cursor:pointer;
    overflow: hidden;
    user-select: none;
}

#arrow:hover{
    color:#5156a0;
    transform:scale(1.1);
}
#arrow:active{
    color: rgb(118, 108, 209);
    transform:scale(1.15);
}
@media (max-width: 1500px) {
    .content {
      transform: translateY(-50%);
      
    }
    .content h2 {
        font-size: 45px;

    }
}
@media (max-height: 800px) {
    #bigType{
        font-size: 1400px;
    }
    .content {
        transform: translateY(-100%);
        
    }
    .content h2 {
        font-size: 45px;

    }
    
}
@keyframes slideIn{
    from{transform: translateX(-500px);}
    from{opacity: 0;}
    to{opacity: 1;}
}
