@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: black;
    text-size-adjust: 100%;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'lnum' 1;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currentlysupported by Chrome, Edge, Opera and Firefox */
    color: white;
    font-family: Raleway;
    text-align: center;
}
.wrapper{
    position: relative;
    width: 100%;
    height: 100vh;
}
.content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
img{
    width: 90%;
    max-width: 400px;
    margin-left: 5px;
}
.text{
    font-size: 38px;
    font-weight: 400;
    margin-top: 25px;
}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    color: #2EC98F;
}
.tel{
    margin-top: 50px;
    font-size: 24px;
}
.email{
    margin-top: 7px;
    font-size: 24px;
}

@media screen and (max-width:400px){
    .text{
        font-size: 28px;
        margin-top: 15px;
    }
    .tel{
        margin-top: 30px;
        font-size: 18px;
    }
    .email{
        font-size: 18px;
    }
}