@charset "utf-8";
/* CSS Document */

body {
    background-color: #f3eeea;
    text-align: center;
    margin: 0; 
}

header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 10px; 
}

.logo {
    text-align: start; 
    color: black;
}

.return {
    text-align: end; 
    color: black;
}

a {
	color: black;
	text-decoration: none;
}

main {
	margin-top: 50px;
}

img {
    width: 30%;
    margin: calc(10%/6);
}

button {
    width: 10%;
    margin-top: calc(10%/6);
	margin-bottom: calc(10%/6);
	margin-left: calc(10%/1);
	margin-right: calc(10%/1);
	background-color: #af9d81;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer {
	text-align: start;
	margin-top: 100px;
}