body {
    margin: 0px;
    padding: 0px;
    height: 100vh;
}

* {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 0px;
    margin-left: 40px;
}

span {
    font-size: 36px;
    font-weight: 500;
    margin: 0px;
    color: #FFB801;
}

header {
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header img {
    height: 40px;
    margin: auto 15px;
}

main {
    display: flex;
    background: rgb(255,237,189);
    background: linear-gradient(0deg, rgba(255,237,189,1) 0%, rgba(255,184,1,1) 50%);
    height: calc(100vh - 130px);
    justify-content: center;
    align-items: center;
}

main p {
    color: white;
    font-size: 40px;
    font-weight: 500;
}

footer {
    height: 65px;
    position: relative;
}

.socials img {
    height: 30px;
}

.socials a {
    height: 30px;
}

.socials {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px;
    color: black;
    font-size: 15px;
    font-weight: 600;
}

.socials a:nth-child(2) img {
    margin-right: 50px;
}

.socials a:nth-child(1) img {
    margin-right: 20px;
}

@media only screen and (max-width: 890px) {
    main p {
        font-size: 24px;
        text-align: center;
    }

    footer p {
        font-size: 13px;
    }

    .socials img {
        height: 25px;
    }

    .socials a {
        height: 25px;
    }

    .socials a:nth-child(2) img {
        margin-right: 15px;
    }
    
    .socials a:nth-child(1) img {
        margin-right: 3px;
    }

    h1 {
        margin-left: 17px;
        font-size: 26px;
    }

    span {
        font-size: 26px;
    }
}