@charset "UTF-8";
/* CSS Document */

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

@font-face {
    font-family: ScrittureGrotesk;
    src: url(fonts/ScrittureGrotesk-Light.otf), 
        url(fonts/ScrittureGrotesk-Regular.otf), 
        url(fonts/ScrittureGrotesk-Bold.otf), 
        url(fonts/ScrittureGrotesk-Thin.otf);
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;

}

/*
html {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #4f4f4f, #2e2e2e 50%, #4f4f4f 100%);
    background-repeat: no-repeat;
}
*/


html {
    background-color: #2e2e2e;
}    

    
main {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    max-width: 150px;
    margin-top: 100px;
    margin-bottom: 20px;
    animation: logo-in 1s ease-in-out 0s 1 both;
}

header a img {
    max-width: 500px;
    margin-top: 100px;
    animation: logo-in 1s ease-in-out 0s 1 both;
}

@keyframes logo-in {
    0% {
        opacity: 0;
        transform: translate(0, 5vw);
    }

    50% {
        opacity: 0,5;
    }

    100% {
        opacity: 1;
        transform: translate(0,0);
    }
}

h1 {
    font-family: 'ScrittureGrotesk', sans-serif;
    font-weight: normal;
    font-size: 32px;
    animation: h1-in 1s ease-out 0.5s 1 both;
    color: #ff7200;
}

@keyframes h1-in {
    0% {
        opacity: 0;
        transform: translate(0,5vw);
    }

    50% {
        opacity: 0,5;
    }

    100% {
        opacity: 1;
        transform: translate(0,0);
    }
}

span {
    font-weight: bolder;
}

p {
    font-family: "Commissioner", sans-serif;
    font-size: 24px;
    margin: 30px 0 80px 0;
    animation: p-in 1s ease-out 2s 1 both;
    color: #ff7200;
}

.small {
    font-size: 16px;
    padding: 0 20% 0 20%;
    margin: 50px;
    color: #ff7200;
}

@keyframes p-in {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0,5;
    }

    100% {
        opacity: 1;
    }
}

a {
    font-family: 'ScrittureGrotesk';
    font-weight: light;
    text-decoration: none;
    color: #ff7200;
}

.button {
    color: #2e2e2e;
    text-decoration: none;
    font-weight: bold;
    background-color: #ff7200;
    padding: 20px;
    clip-path: polygon(10% 0, 100% 0, 100% 10%, 100% 70%, 90% 100%, 0 100%, 0% 80%, 0 30%);
    border: solid 2px #ff7200;
    animation: button-in 1s ease-out 2.5s 1 both;

    transition: background-color 1s, color 1s;
    
}

@keyframes button-in {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0,5;
    }

    100% {
        opacity: 1;
    }
}

.button:hover {
    background-color: #2e2e2e;
    color: #fff;

}

footer {
    margin-top: 150px;
    font-size: 12px;
}

@media (max-width: 1000px) {
    main {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    main {
        max-width: 90%;
    }
    h1 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    .small {
        font-size: 12px;
        padding: 0 10% 0 10%
    }
}