@font-face {
    font-family: 'AdiHaus';
    src: URL('https://assets.codepen.io/6060109/adihaus_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "AdiHaus";
    src: url("https://assets.codepen.io/6060109/adihaus_bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}


body,
html {
    margin: 0;
    min-width: 100%;
    min-height: 100vh;
    font-family: AdiHaus;
}

body {
      height: 100vh;
    display: flex;
}


.all-container {
    max-width: 676px;
    margin: 0 auto;
}

#logo {
    display: block;
    margin: 15px auto;
}

#athlete-mobile {
    width: 100%;
    height: 200px;
    background: #ffffff url("bg.jpg") no-repeat right top;
    background-size: cover;
}

.text-container {
    width: 100%;
    text-align: center;

}

.all-content-container {
    padding: 112px 30px;
}

h2 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

h2.red {
    font-size: 24px;
    color: #CD3A24;
    font-weight: 400;
    margin-bottom: 10px;
}

h2.grey {
    text-shadow: 0.075em 0.08em 0.1em rgb(255 255 255);
    color: #ffffff;
}

p {
    line-height: 23px;
    margin-top: 20px;
    margin-bottom: 14px;
    color: #ffffff;
}

form {
    display: flex;
}

input[type="text"] {
    width: 80%;
    height: 50px;
    box-sizing: border-box;
    padding: 0 20px;
    font-family: AdiHaus;
}

input[type="submit"] {
    width: 25%;
    height: 50px;
    background-color: #333333;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    font-family: AdiHaus;
}

.desktop-image {
    display: none;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    body {
        height: 100vh;
        background-color: #000000;
        /* background: url(https://assets.codepen.io/6060109/destop-bg.png); */
        background-size: cover;
    }


    .all-container {
        width: 50%;
    }

    .desktop-image {
        display: block;
        width: 50%;
        background: url(bg.jpg);
        background-size: cover;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    }

    .text-container {
        text-align: left;
    }

    #athlete-mobile {
        display: none;
    }

    #logo {
        box-shadow: 0 2px 4px rgb(255 255 255 / 69%), 0 6px 12px rgb(255 255 255 / 80%);
        /* box-shadow: 6px 6px 6px 6px rgb(255 255 255); */
        border-radius: 5px;
        background-color: #ffffff;
        width: 134px;
        display: block;
        margin: 37px 30px 15px;
    }

    h2 {
        font-size: 43px;
    }

}

.address-section {
    margin-top: 119px;
}

@media (max-width: 450px) and (min-width: 320px) {
    body {
        background-color: black;
        display: flex;
    }

    .all-content-container {
        padding: 34px 30px;
    }

    .address-section {
        margin-top: 66px;
    }

     #logo {
        box-shadow: 0 2px 4px rgb(255 255 255 / 69%), 0 6px 12px rgb(255 255 255 / 80%);
        /* box-shadow: 6px 6px 6px 6px rgb(255 255 255); */
        border-radius: 5px;
        background-color: #ffffff;
        width: 134px;
        display: block;
       
    }
    #athlete-mobile {
    width: 100%;
    height: 308px;
    background: #ffffff url(bg.jpg) no-repeat right top;
    background-size: cover;
}
}