@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap');


*{
    font-family: "Reenie Beanie", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
	background-image: url('./assets/bg.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

a{
	text-decoration: none;
	color: inherit;
}


.container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-self: center;
    overflow-x: hidden;
    justify-content: space-around;
}


.hero{
    display: flex;
    flex-direction: column;
    width: 50%;
    align-self: center;
    align-items: center;
    margin-top: 10%;
}

.logo{
    width: 30%;
    height: auto;
}

.herom{
    margin-top: 5%;
    font-size: 4vh;
    width: 50%;
    text-align: center;
}

@media (max-width: 1800px) {
    .herom{
        width: 80%;
    }
}

@media (max-width: 1000px) {
    .herom{
        margin-top: 15%;
        font-size: 3vh;
        width: 90%;
    }
}