@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
    font-family: "Pretendard", serif;
}


body {
    background-color: #00acee;
}

.profile {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 2px solid white;
    background-image: url('logo.png');
    background-position: center;
    background-size: cover;
    background-color: white;
}

.main {
    color: white;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.sub {
    color: white;
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.wrap {
    width: 300px;
    margin: 30px auto 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrap>a {
    width: 300px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #44398a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 3px 3px 5px 0px black;
}

.wrap>a:hover {
    background-color: #f2f2f2;
}

.total{
    width:1300px;
    /* height: 1000px; */
    /* background-color: red; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

}

.gov{
    width: 300px;
    margin: 30px auto 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.gov>a{
    width: 300px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #44398a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 3px 3px 5px 0px black;
}

.gov>a:hover {
    background-color: #f2f2f2;
}

.price{
    width: 300px;
    margin: 30px auto 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.price>a{
    width: 300px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #44398a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 3px 3px 5px 0px black;
}

.price>a:hover {
    background-color: #f2f2f2;
}


.fortal{
    width: 300px;
    margin: 30px auto 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.fortal>a{
    width: 300px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #44398a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 3px 3px 5px 0px black;
}

.fortal>a:hover {
    background-color: #f2f2f2;
}

.rest{
    width: 300px;
    margin: 30px auto 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

.rest>a{
    width: 300px;
    height: 50px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #44398a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 3px 3px 5px 0px black;
}

.rest>a:hover {
    background-color: #f2f2f2;
}



.sub-title {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
    width: 150px;
    height: 30px;
    background-color: #ac7d7dfd;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    padding-top:15px ;
}


@media all and (max-width: 1024px){
	/* //브라우저 창 width가 1024px보다 작아지는 순간부터 적용
	//태블릿 */
}
@media all and (max-width: 768px){
	/* //브라우저 창 width가 768px보다 작아지는 순간부터 적용
	//모바일 */
    .total{
        width:300px;
        /* background-color: red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
    }
}
@media all and (min-width: 768px){
	/* //브라우저 창 width가 768px보다 커지는 순간부터 적용
	//태블릿 */
}
@media all and (min-width: 1024px){
	/* //브라우저 창 width가 1024px보다 커지는 순간부터 적용
	//데스크탑 */
}