@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
  
body {
    position: relative;
    height: 100vh;
    background-color: rgb(0, 21, 32);
}

/* Header */

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    padding: 20px;
    color: white;
}

.logo img {
    border-radius: 50%;
    width: 100px;
}

nav {
    ul {
        list-style: none;
        display: flex;
    }

    li {
        margin-left: 40px;

        a {
            color: white;
            text-decoration: none;
            font-family: "Cinzel";
            font-size: 24px;
        }
    }

    a:hover {
        color: rgba(251, 154, 96, 0.8);
    }
}

/* Main */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100%;

    h1 {
        color: white;
        font-size: 88px;
        font-family: "Cinzel";
    }

    h2 {
        color: white;
        font-size: 34px;
        font-family: "Cinzel";
    
    }

    u {
        color: white;
        font-size: 34px;
        font-family: "Cinzel";
        text-decoration: underline 0.5px;    
    }

    .buttons {
        display: flex;
        gap: 48px;

        margin-top: 48px;

        button {
            padding: 12px 24px;
            border-radius: 8px;
            border: none;
            background-color: rgba(251, 154, 96, 0.8);
            cursor: pointer;
            
            a {
                color: white;
                font-size: 24px;
                font-family: "Cinzel";
                text-decoration: none;
            }
        }
    }
}

/* Footer */

footer {
    position: fixed;
    bottom: 0;

    width: 100%;
    
    margin-bottom: 20px;
    text-align: center;
    color: white;
}