@font-face {
    font-family: Carmen-Sans-Regular;
    src: url('Carmen Sans Regular.otf');
}
@font-face {
    font-family: GraublauWeb;
    src: url("path/GraublauWeb.otf") format("opentype");
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
html{
    height: 100vh;
}
body{
    background-image: url("arkaplan.png");
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: Carmen-Sans-Regular;
    overflow: hidden;
   
  
}
.main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
   width: auto;

    padding: 20px;
    
}
.logo{
   width: auto;
   margin-bottom: 80px;
  

}
.logo img{
    width: 100%;
    max-width: 100%;
}

.contact{
   margin-bottom: 30px;
    width: 80%;

}
.contact p{
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;

}
.contact p a{
    margin-left: 50px;
    color: #000;
}
.line img{
    width: 100%;
    max-width: 100%;
}
.brand{
display: flex;
align-items: center;
margin-top: 20px;
}
.brand .marka{
    margin-right:50px;
}
.brand .marka a{
    margin-left: 20px;
}
@media only screen and (max-width: 767px) {
    body{
        font-size: 16px;
    }
     
    .brand{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        }
        .brand .marka{
            margin-right: 0px;
            margin-bottom: 20px;
        }
        .contact{
            width: 100%;
        }
        .contact p{
            max-width: 100%;

            
        }
        .contact p img{
            width: 25px;
        }
        .contact p a{
            margin-left: 20px;
        }
  }


