* {
    box-sizing: border-box;
    margin: auto;
    font-family: Rubik;
    }
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 265px 0 225px;
    width: 100%;
    margin: auto;
    border: #fbab40;
    height: 100vh;
    background-color: #242628;
    background-origin: padding-box;
    border: 5px solid #1f1e1e;
}
.header {
    display: flex;
    font-weight: 600;
    font-size: 36px;
    margin: 14px 0px;
    color: #ffffff;
    text-align: center;
    display: block;
}

.text {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}
.button {
    height: 50px;
    width: 160px;
    background-color: #ff83cf;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 0px 10px rgba(255, 27, 217, 0.8);
    margin-top: 30px;
    cursor: pointer;
}
.animation {
	transition: transform 0.2s, box-shadow 0.2s;
}

.animation:hover {
	transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 27, 217, 0.8);
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 180px 0 240px;
    }
}

@media screen and (max-width: 700px) {
    .header {
        font-size: 24px;
    }
}
