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

@font-face {
	font-family: 'Widock TRIAL'; 
	src: local('Widock TRIAL Bold'), url(assets/fonts/WidockTRIALBold.otf);
}

body {
    font-family: Widock TRIAL;
    background-color: #576079;
    color: #ffffff;
    display: flex;
    text-align: center;
    list-style-type: none;
    flex-wrap: nowrap; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

h1 {
    font-size: 50px;
}

.back {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px; 
    width: 300px;
    font-size: 1.2em;
    color: #333;
    background-color: #f8f8f8; 
    text-decoration: none;
    border-radius: 50px;
    text-align: center; 
    transition: transform .2s, background-color .2s;
}

.back:hover {
    background: #e6e6e6; 
    transform: scale(1.05);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em; 
    }

    nav ul li {
        font-size: 1em; 
    }

    .button {
        height: 50px;
        font-size: 1em; 
    }
}