
/* Main CSS file Harry Ardern Portfolio Project */
/* Imported Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Alkalami&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alkalami&family=Doto:wght@100..900&family=Raleway&display=swap');
/* Start of main style sheet */

h1{
    font-size: 40px;
    color: #4FC34F;
    font-family: "Alkalami", serif;
    transform: translateY(100px);
    animation: slideUp .8s ease forwards .5s;
}

h2{
    display: flex;
    align-content: center;
    justify-content: center;
}

body{
    background-color: #2c414d;
    font-size:12px;
    font-family: 'OCR A Std', monospace;
    color: white;
}

p{
    opacity: 0;
    transform: translateY(300px);
    animation: slideUp .8s ease-in-out forwards .8s;
}

header{
    height: 70px;
    width: 100%;
    color: #ffffff;
    z-index: 99;
    position: fixed;
    list-style: none;

}

nav {
    height: inherit;
}

nav ul, .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}
.menu {
    display: flex;
    height: inherit;
    align-items: center;
    padding: 0 20px;
    font-style: normal;
    text-decoration: none;
}
.menu li {
    padding: 0 10px;
}
.menu a {
    color: white;
    list-style: none;
}
.logo {
    flex: 1;
    max-width: 100%;
    height: auto;
    width: 50px;
}

.header_bulletpoint{
    color: #4FC34F;
}

.Bullet{
    color: #4FC34F;
    font-family: "Doto", serif;
}

.name{
    opacity: 0;
    color: #4FC34F;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: bold;
    transform: translateY(300px);
    animation: slideUp .8s ease-in-out forwards .8s;
}



.wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}
.main_text{
    grid-column: 2/ 3 span;
    grid-row: 2;
}

.placeholder{
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.button-57 {
    position: relative;
    overflow: hidden;
    border: 1px solid #2c414d;
    color: #2c414d;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 13px 13px 12px;
    text-decoration: none;
    cursor: pointer;
    background: #4FC34F;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.button-57 span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}

.button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d2c33;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

