@font-face {
    font-family: 'URW Gothic';
    src: url('URWGothic-Book.otf');
}

@keyframes hover {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
        font-size: 17px;
	}

	100% {
        transform: scale(1.05);
        font-size: 17px;
    }
}

@keyframes stophover {
    0% {
        transform: scale(1.05);
        font-size: 17px;
    }

    50% {
        transform: scale(1.05);
        font-size: 17px;
    }
    
    100% {
        transform: scale(1);
    }
}

body {
    background-image: url(imgs/grid.jpg);
    background-size: 16%;
    color: white;
    font-family: 'URW Gothic';
}

h1 {
    text-align: center;
}

h3 {
    padding-top: 15px;
    text-decoration: underline;
}

a {
    color: rgb(43, 109, 252);
}

a:hover {
    animation: hover 0.2s ease 0s 1 normal forwards;
}

a:not(:hover){
    animation: stophover 0.2s ease 0s 1 normal forwards;
}


/* Classes */

.top-buttons {
    border-radius: 0%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: auto;
    border-width: 0px;
    background-color: #222a30;
    width: 23.25%;
    height: 35px;
    color: white;
    font-family: 'URW Gothic';
}

.top-buttons:hover {
    background-color: #2c363d !important;
}

.currentPageButton {
    background-color: #1c2227 !important;
}

.currentPageButton:hover {
    background-color: #1c2227 !important;
}

.top-body {
    width: 95%;
    background-color: #222a30;
    margin: auto;
    margin-top: 1%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    height: 94vh; 
}

.main-body {
    width: 93%;
    background-color: #1c2227;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    height: 80%;
    font-family: 'URW Gothic';
    color: white;
}

.ctpic {
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    height: 6%;
}

.packpic {
    height: 20vh;
    border-radius: 5px;
}

.packpic-div {
    margin: auto;
    margin-top: 20px;
    width: fit-content;
}

.packpic-div:hover {
    animation: hover 0.3s ease 0s 1 normal forwards;
}

.packpic-div:not(:hover){
    animation: stophover 0.3s ease 0s 1 normal forwards;
}