@font-face{
    font-family: fredoka;
    src: url(Fredoka-VariableFont_wdth,wght.ttf);
}

html{
    background-color: black;
    font-family: fredoka;
}

.main{
    background-color: #ba0000;
    width: 50%;
    margin: auto;
    margin-top: 6%;
    text-align: center;
    animation: fadeInAnimation1 ease 3s;
    animation-iteration-count: 1;
}
h1{
    font-size: 45px;
    margin: 4.25% 0 7% 0;
}
.innermain{
    border: white 5px dashed;
    margin: 1% 2%;
    padding-bottom: 2%;
}
.buttonsection{
    text-align: center;
    display: flex;
    margin-top: -5%;
    margin-left: 2%;
    margin-right: 2%;
}

#text{
    margin-left: 2%;
    width: 150%;
}
#pfp{
    outline: black 6px solid; 
}
i{
    font-size: 30px;
    padding: 0 5px;
}
a{
    color: black;
    transition:
        color 0.5s;
        text-shadow 0.5s;
}
a:hover{
    color: #ed0000;
    text-shadow: black 0 0 10px;
}
@keyframes fadeInAnimation1 {
        0% {
            transform: translateY(-100%);
        }

        100% {
            transform: translateY(0%);
        }
        }
@media (max-width: 430px){
    .main{
    width: 100%;
    margin: auto;
    margin-top: 4%;
    }
    h1{
    font-size: 38px;
    margin: 4.25% 0 7% 0;
}
    .buttonsection{
    text-align: center;
    display: block;
    margin: 0% 0% 0 0;
    }
    button{
    background-color: white;
    border: black 5px solid;
    width: 75%;
    height: 9%;
    padding: 0%;
    margin: 3% 0%;
    font-family: fredoka;
    font-size: 18px;
    }
    #text{
    width: 90%;
    text-align: center;
    margin: auto;
    }
    #pfp{
    margin-bottom: 6%;
    width: 65%;
    }
    i{
    font-size: 25px;
    padding: 0 5px;
    margin-top: -5%;
    }
    #arrow{
        margin-top: 0;
    }
}