/* Resesting defaults */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.my-body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    background-image: url("./images/digitalworld.jpg");
    background-position: fixed;
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex;
}

.container {
    display: flex;
    max-width: 1280px;
    padding: 2rem;
    color: white;
    flex-direction: column;
}

h1 {
    font-weight: 400;
    font-size: 4rem;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
}

footer {
    width: 100%;
    display: flex;
    margin-top: auto;
}

.container-footer {
    background-color: #e3e3e3;
    display: flex;
    padding: 1rem;
    width: 100%;
    color: #4e4e4e;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.title-holder {
    padding-top: 25vh;
    text-align: center;
}

.button-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.button {
    padding: 1rem;
    background-color: white;
    color: #056c8b;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 1.5rem;
}

.button:hover {
    background-color: #efefef;
    color: #056c8b;
}

.footer-logo-desktop {
    max-height: 2rem;
    width: auto;
}

.footer-logo-mobile {
    max-height: 2rem;
    width: auto;
    display: none;
}

.footer-menu-item {
    color: #056c8b;
    display: inline-block;
    text-decoration: none;
    padding: 0.5rem;
}

.footer-menu-item:hover {
    color: #053a4b;
}

@media only screen and (max-width: 768px) {
    .title-holder {
        padding-top: 2rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .container-footer {
        background-color: transparent;
        color: white;
    }
    .footer-menu-item {
        color: white;
    }
    .footer-menu-item:hover {
        color: #eaeaea;
    }
    .footer-logo-desktop {
        display: none;
    }
    .footer-logo-mobile {
        display: flex;
    }
  }