@font-face {
    font-family: "Raleway";
    src: url("./static/fonts/Raleway-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Raleway";
    src: url("./static/fonts/Raleway-ExtraLight.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Raleway";
    src: url("./static/fonts/Raleway-ExtraBold.ttf");
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: #141414;

    font-family: 'Raleway';
}


.content {
    position: fixed;
    width: calc(100% - 4rem);
    z-index: 2;
    padding: 2rem;
    color: #fff;
    left: 0;
    bottom: 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact .btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #141414;
    border: 1px solid #fff;
    padding: 10px 20px;
    margin-left: 1rem;
    transition: all .2s ease-in-out;
}

.content .btn:hover{
    background-color: #ff692e;
}

.content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(20 20 20 / 88%);
    z-index: -1;
    filter: blur(10px);
}


@media only screen and (max-width: 650px) { 
    .content {
       flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .brand{
        margin-bottom: 1rem;
        text-align: center;
    }
    .contact{
        text-align: center;
    }
    .contact .btn {
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}