/*html,
body {
	background-color: #000;
	height: 100%;
}*/

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

body {
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;
    height: 100vh;
    max-height: -webkit-fill-available;
    box-shadow: inset 0 0 100px rgba(0, 0, 0,0.9);
    margin: 0;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
}

.contact img {
    box-shadow: 0 0 100px rgba(0, 0, 0,0.25)
}

.contact p {
    display: none;
}

a {
	color: #000;
}

.logo {
	width: 200px;
	display: block;
	margin-top: 2rem;
	margin-bottom: 2rem;
    border-radius: 1000px;
    box-shadow: 0 0 100px rgba(0, 0, 0,0.25)
}