@font-face {
    font-family: DMSansMedium ;
    src: url(../fonts/dmsans/DMSans-Medium.ttf);
}
@font-face {
    font-family: DMSansBold;
    src: url(../fonts/dmsans/DMSans-Bold.ttf);
}
@font-face {
    font-family: DMSansBold;
    src: url(../fonts/dmsans/DMSans-Regular.ttf);
}

body{
    background-color: black;
    overflow-x: hidden;
}

.logo{
    height: auto;
    width: 150px;
}

.main-div{
    min-height: 100vh;
    min-width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
}

.art1,.art2{
    position: absolute;
    height: 40vh;
}

.art1{
    left: 0;
    top: 0;
}
.art2{
    right: 0;
    bottom: 0;
    rotate: 180deg;
}

.inner-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1{
    font-family: DMSansBold;
    color: #fff;
    text-align: center;
    font-size: 92px;
    font-weight: 900;
    line-height: 0.75;
    margin-bottom: 2.5rem;
}

h3{
    font-size: 35px;
    color: #fff;
    font-family: DMSansBold;
    text-transform: uppercase;
    letter-spacing: 21.5px;
    margin-bottom: 2.5rem;
    margin-right: -1.2em;
}

.social-media{
    display: flex;
    gap: 15px;
}

.social-media img{
    height: auto;
width: 35px;
}

@media only screen and (max-width:812px){
    .art1,.art2{
        height: 30vh;
    }
}

@media only screen and (max-width:700px){
    h1{
        font-size: 62px;
        margin-bottom: 2rem;
    }
    .logo{
        width: 100px;
    }
    h3{
        font-size: 25px;
        letter-spacing: 12px;
        margin-bottom: 1.2rem;
    }
}

@media only screen and (max-width:475px){
    h1{
        font-size: 40px;
        margin-bottom: 1rem;
        line-height: 0.5;
        margin-bottom:1.5rem;
    }
    h3{
        font-size: 18px;
        letter-spacing: 9px;
    }
    .social-media img{
        width: 30px;
    }
}