* {
	padding: 0;
	margin: 0;
    box-sizing: border-box;
}

.main {
    height: 100vh;
    background-color: cornflowerblue;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title,.text {
    font-family: 'Dancing Script', cursive;
    text-align: center;
}

.title {
    font-size: 68px;
    margin-bottom: 80px;
    text-shadow: 4px 4px 50px black;
}

.text {
    font-size: 38px;
}

@media (max-width: 450px) {
    .title {
        font-size: 48px;
    }
    .text {
        font-size: 28px;
    }
}