@font-face {
	font-family: 'Lausanne';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('../fonts/TWKLausanne-300.woff2') format('woff2'),
		url('../fonts/TWKLausanne-300.woff') format('woff');
}
@font-face {
	font-family: 'Lausanne';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('../fonts/TWKLausanne-450.woff2') format('woff2'),
		url('../fonts/TWKLausanne-450.woff') format('woff');
}

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

body {
    margin: 0;
    font-family: "Lausanne", Sans-serif;
    color: black;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    margin: 0;
    text-indent: -9999px;
    max-width: 500px;
    width: 100%;
    width: 100%;
    font-size: 0;
    line-height: 0;
    padding: 0px 20px;
}

h1:before {
    content: '';
    display: block;
    height: 0;
    padding-bottom: 31.2307692%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/logo.svg');
}

.icon {
    position: fixed;
    top: 10%;
    right: 5%;
    width: 10%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icon.svg');
}

.icon:before {
    content: '';
    display: block;
    padding-bottom: 92.670157068%;
}

.container {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content {
    padding:0px 20px;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address {
    position: relative;
    padding-left: 24px;
}

.address:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/pin.svg');
}

.email {
    position: relative;
    padding-left: 24px;
}

.email:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/email.svg');
}

@media (max-width: 500px) {
    .content {
        flex-direction: column;
        gap: 10px;
    }

    .icon {
        width: 50px;
        right: 20px;
        top: 20px;
    }
}