body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}
*,
::after,
::before {
    box-sizing: border-box;
}
.container {
    display: grid;
    place-items: center;
}
main {
    background-color: #efefef;
    min-height: 100vh;
}
.container {
    max-width: 1520px;
    margin: 0 auto;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    max-width: 100%;
    height: auto;
}

.logo img {
    max-width: 300px;
}

p {
    font-size: 16px;
    margin-bottom: 0;
}

.contact {
    margin-bottom: 16px;
}

.contact-details {
    display: flex;
    gap: 16px 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-details a {
    font-size: 24px;
    color: lightseagreen;
    transform: scale(1);
    transition: color ease-in-out 200ms, transform ease-in-out 200ms;
}

.contact-details a:hover {
    color: lightblue;
    transform: scale(1.08);
}
