*, *::before, *::after {
    box-sizing: border-box;
}


html, body {
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
	
    background: #f4e4dd;
    color: #4a2915;
	
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}



.title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 59px;
    line-height: 64px;
    letter-spacing: -.4px;

    margin: 0;
    color: #275b85;
}

.content {
    max-width: calc(100% - 4vw);
	text-align: center;
	
    /*padding: 25px 40px;
    border-radius: 7px;
    background: #f7f3ef;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/

    img {
        width: 300px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    p {
        margin: 0;
    }

    a {
        color: inherit;
    }
}