@font-face {
    font-family: 'PixelArtFont';
    src: url('fonts/Pixelartfontv2-Regular.woff') format('woff'), /* Modern Browsers */
    url('fonts/Pixelartfontv2-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}


.wrapper {

    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;


}

.header {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.header img {
    width: 130px;
    height: 130px;
}

h1 {
    font-family: PixelArtFont;
    font-size: 70px;
    font-weight: normal;
}

body {
    background-color: #314D79;
    padding-top: 10px;
    padding-left: 45px;
    padding-right: 45px;
}

.santa {
    width: 70px;
}

.santaText {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.santaText p {
    font-family: 'PixelArtFont';
    font-size: 40px;
}

.textImage {
    display: flex;
    justify-content: center;
    margin-top: 40px;

}

.textImage img {
    max-width: 40%;
    border: 4px solid #152a4a;
}

.textImage div {
    font-family: 'PixelArtFont';
    font-size: 30px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 45px;
    margin-right: 45px;
}

.specs {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-top: 4px solid #152a4a;
    border-bottom: 4px solid #152a4a;
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 30px;
}

.specs table {
    margin: auto;

}

.specs table th, td {

    font-family: Arial;
    font-size: 20px;
    text-align: left;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 40px;
}

.specs table th {
    font-size: 25px;
    padding-bottom: 20px;
}


.inputDiv {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 4px solid #152a4a;
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.signUp {
    display: flex;
    justify-content: center;
}

.signUp input{
    font-size: 40px;
    font-family: PixelArtFont;
}

.signUp h2 {
    font-family: PixelArtFont;
    font-size: 50px;
    font-weight: normal;
}

.santaButton {
    border: 4px solid black;
    border-radius: 12px;
    position: relative;
    font-size: 60px;
    text-decoration: none;
    color: black;
    font-family: PixelArtFont;
    text-decoration: none;
    padding-right: 80px;
    padding-left: 15px;
    padding-top: 6px;
    padding-bottom: 9px;
    background-color: #273e62;
}

.santaButton img {
    width: 70px;
    height: 70px;
    padding-top: 19px;
    position: absolute;
    top: -16px;
    right: 4px;
}

.santaButtonDiv {
display: flex;
justify-content: center;
}

.copyRight {
    font-family: Arial;
    font-size: 20px;
    margin-left: 30px;
    margin-top: 60px;
}

@media only screen and (max-width: 480px) {
    body {
        padding: 0px;
    }

    .wrapper {
        max-width: 100%
    }

    .header {
        align-items: start;
        flex-direction: column;
    }

        .header h1 {
            font-size: 55px;
            margin-bottom: 0;
        }

        .header img {
            margin-top: 20px;
        }


    p {
        line-height: 25px;
    }

    .textBorder {
        width: unset;
    }

    .textImage {
        flex-direction: column-reverse;
    }

    .textImage img {

        max-width: 70%;
        margin-left: 45px;
        margin-right: 45px;
    }

    .textImage.reverse {
        flex-direction: column;
    }

    .specs {
        width: 100%;
    }

        .specs table th, td {
            padding-left: 0px;
            padding-right: 0px;
        }

    h2 {
        line-height: 50px;
        text-align: center
    }

    .inputDiv {
        width: 100%;
    }

    .signUp input {
        font-size: 18px;
        font-family: 'Bungee', cursive;
    }

    .signUp form > :first-child {
        margin-bottom: 15px;
    }

    .santaButton {
        padding-top: 20px;
        padding-bottom: 26px;
        font-size: 30px;
    }

    .santaText {
        margin-bottom: 0px;

    }

    .santaText > :last-child {
        display: none;

    }

    .santaText p {
        font-size: 25px;
        padding-left: 15px;
    }

    .specs table td {
        font-size: 14px;
    }

}   