@font-face {
    font-family: "Inter Light";
    src: url("../fonts/Inter-Light.ttf")
}

@font-face {
    font-family: "Inter Regular";
    src: url("../fonts/Inter-Regular.ttf")
}

@font-face {
    font-family: "Barlow";
    src: url("../fonts/Barlow-Regular.ttf")
}

@font-face {
    font-family: "Barlow Medium";
    src: url("../fonts/Barlow-Medium.ttf")
}

@font-face {
    font-family: "Barlow Semi Condensed Semi Bold";
    src: url("../fonts/Barlow-Semi-Condensed-Semi-Bold.woff")
}

@font-face {
    font-family: "Barlow Semi Condensed";
    src: url("../fonts/Barlow-Semi-Condensed.woff")
}

body {
    font-family: 'Barlow', sans-serif;
    background: #F8F8F8;
}

header {
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* header */

.logo {
    width:130px;
    height:auto;
}

header a {
    text-decoration: none;
    font-family: 'Barlow Medium', sans-serif;
    font-size: 12px;
}

.login {
    color: white;
    margin-right: 10px;
}

.login:hover {
    color: #00FFD1;
}

.signup {
    color: black;
    background: #F8F8F8;
    border-radius: 5px;
    white-space: nowrap;
    border: 1px solid #E7E6E6;
}

.signup:hover {
    background: #00FFD1;
}

.auth {
    display: flex;
    align-items: center;
}

.auth a {
    padding: 5px 10px;
}

@media only screen and (max-width:280px) {

    .login {
        margin-right: 0px;
    }

    }

    @media only screen and (min-width:1300px) {


    
        .logo {
            width:300px;
        }
    
    
        .auth a {
            font-size: 18px;
            padding: 10px 20px;
        }
    
    
        .auth {
            gap: 30px;
    
        }
    
        header {
            padding: 20px 5%;
        }
    

    
    
        
        }