* {
    box-sizing: border-box;
}

body {
    background-color: #E7e7e7;
    font-family: 'Manrope';
    margin: 5px;
    user-select: none;
}

h1 {
    font-size: 36px;
    margin-bottom: -20px;
    font-weight: 600;
}

p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero, .contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.infos {
    display: flex;
    flex-direction: row;
    gap: 15px;
    color: #a2a2a2;
    margin-bottom: 50px;
}

.info_item {
    padding: 5px 25px 5px 25px;
    border-radius: 30px;
    border: solid #a2a2a2 1px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

h3 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    opacity: 75%;
}

.contacts {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    width: 280px;
    height: 202px;
}

a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    opacity: 75%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: solid #000000 1px;
    border-radius: 15px;
    margin: 7px;
    width: 100%;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
}

i {
    font-size: 20px;
    color: #000000;
    opacity: 75%;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 125px;
    user-select: none;
}

h4 {
    margin-bottom: -5px;
    font-size: 16px;
}

footer>span {
    font-size: 12px;
}

a:hover {
    opacity: 100%;
    scale: 1.01;
}

.info_item:hover {
    color: #000000;
    opacity: 75%;
    border: solid #00000075 1px;
}

img {
    user-select: none;
}