:root {
    --dark-blue-100: #609ED4;
    --dark-blue-200: #356EA9;
    --dark-blue-300: #0A3871;
    --dark-blue-400: #072B61;
    --dark-blue-500: #052051;

    --light-blue-100: #F3F5FC;
    --light-blue-200: #EFF1FA;
    --light-blue-300: #E9ECF8;
    --light-blue-400: #AAB2D5;
    --light-blue-500: #757FB2;

    --gray-100: #CED4DA;
    --gray-200: #ADB5BD;
    --gray-300: #868E96;
    --gray-400: #485057;
    --gray-500: #343A40;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--light-blue-100);
}

header {
    position: fixed;
    top: 0;
    padding: 48px 84px;
    width: 100vw;
}

.container {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
}

.tela-inicial {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.logo-alura {
    height: 48px;
    margin: 40px;
}

.logo-alura:hover {
    transform: scale(1.2);
    transition-duration: 0.5s;
}

.botoes {
    display: flex;
    justify-content: center;
    gap: 20px
}

.start-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px
}

button {
    width: 328px;
    height: 105px;
    background-color: transparent;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--dark-blue-300);
    border-radius: 24px;
    padding: 24px;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 19px;
    outline: none;
    cursor: pointer;
}

button.start-game {
    background-color: var(--dark-blue-300);
    color: #D8DFE8;
}

button.adicionar-palavra {
    background-color: #D8DFE8;
    color: var(--dark-blue-300);
}


footer {
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(var(--dark-blue-100), var(--dark-blue-200), var(--dark-blue-300));
    padding: 40px 0;
    display: block;
    height: auto;
}

.logo-link {
    height: 70px;
    margin: 15px 5px 20px 5px;
}

.logo-link:hover {
    transform: scale(1.2);
    transition-duration: 0.5s;
}