body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.cant-find{
    background-image: url("/images/bg-main.webp");
    background-repeat: repeat-x;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.wrap_cant-find h2{
    font-family: Jost;
    font-size: 8em;
    font-weight: 600;
    margin: 0;
}

.wrap_cant-find h3{
    font-family: Jost;
    font-size: 2.5em;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.main_text{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contacts{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contacts a{
    text-decoration: none;
    color: black;
    font-family: Jost;
    font-size: 1.25em;
    font-weight: 500;
    text-align: center;
}

.contacts ul {
    padding: 0;
}

.contacts ul li{
    list-style: none;
    padding-top: 12px;
}

.contacts span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 208px;
    height: 60px;
    background: black;
    border-radius: 12px;
    margin-top: 15px;
    transition: transform 1s ease;
}

.contacts span:hover{
    transform: scale(1.1);
}

.contacts span a{
    cursor: pointer;
}

.phone::before{
    content: "";
    display: inline-block;
    background-image: url("/images/telephone.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
}

.smartphone::before{
    content: "";
    display: inline-block;
    background-image: url("/images/smartphone.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
}

.mail::before{
    content: "";
    display: inline-block;
    background-image: url("/images/mail.svg");
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    padding-right: 7px;
}

@media (max-width: 376.98px) {
    
    .wrap_cant-find h3 {
        font-size: 2em;
    }
}