@font-face {
    font-family: starborn;
    src: url(../fonts/Starborn.ttf);
}

@font-face {
    font-family: aristotelica;
    src: url(../fonts/AristotelicaSmallCaps-Regular.ttf);
}

h1{
    font-family: starborn;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    margin:50px;
    padding:50px;
    border-radius: 50px 50px 50px 50px;
    border: 15px rgb(168, 126, 168) dotted;
    color:rgb(168, 126, 168) ;
}

body{
    background-color: rgb(133, 100, 133) ;
}

nav{
    background-color: black;
    display: flex;
    flex-direction: column;
    height: 75vh;
    align-items: center;
    padding: 75px;
    margin: 50px;
    justify-content: center;
    border-radius: 50px 50px 50px 50px;
    border: 15px rgb(168, 126, 168) dotted;
    color:rgb(168, 126, 168) ;
}

a{
    text-decoration: none;
    font-size: 3em;
    justify-content: space-evenly;
    height: 0 auto;
    padding: 25px;
    margin: 25px;
    font-family: aristotelica;
    color: rgb(168, 126, 168);
   
   

}

a:hover{
    text-decoration: underline;

}

@media screen and (min-width:576px) {
	body{
		width:70%;
		margin: 0 auto;
	}

    nav{
        padding: 25px;
    }
}