﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body {
    background: #1d242a;
}

#main {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

#box{
    width: auto;
<<<<<<< HEAD
    height: auto;
    
=======
    height; auto;
    font-family: ;
>>>>>>> 91b1ae5d047dfe4bb6f6275af562570828986daf
    color: #202020;
    font-size: 10em;
    font-weight: 500;
    line-height: 130px;
    position: absolute;
    top: 250px;
    left: 100px;
    overflow: hidden; 

}
#box2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
}

img{
    height: 450px;
}

#text {
    color: #9be916;
    font-size: 3.5em;
    position: relative;
    left: -100%;
    animation: anim3 1.5s forwards 2s;
}

@keyframes anim3 {
    from{
        left:-100%;
    }
    to{
        left: 0%; 
    }
}

