* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    height: 100%;
    background: url("/img/contact_bg.jpg");
}

main {
  margin-bottom: 150px;
}

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

.title {
    font-size: xx-large;
    color: #2067d8;
    text-align: center;
    margin-top: 100px;
    animation: slideIn 1.5s forwards;
    position: relative;
    left: -1000px
}

#info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
    margin-top: 100px;
}

.contact-box {
    border-radius: 10px;
    text-align: center;
    align-self: stretch;
    flex: 1 1 0;
}

.contact-box img {
    height: 100px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.contact-box h3 {
    display: block;
    font-size: x-large;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    font-weight: bold;
    unicode-bidi: isolate;
}

.contact-box p {
    font-size: large;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
    font-weight: bold;
}

.first {
	margin-left: 50px;
}

.third {
	margin-right: 50px;
}

@keyframes slideIn {
    100% { left: 0 }
}

@media (max-width: 768px) {
	.first {
      margin-left: 0;
  	}
  	.third {
      margin-right: 0;
  	}
}