/* css reset */
*{box-sizing: border-box;margin:0;padding:0;}
*::after,*::before{box-sizing: border-box;}
ul,ol{list-style: none;}

a{
    color: inherit;
    outline: none;
    text-decoration: none;
}



/* style */
body{
    background: #eee;
    
}
.globalHeader{
    /* border:1px solid red; */
    margin: 40px 16px;
}

.globalHeader > form{
    display: flex;
    justify-content: space-between; 
}

@media (min-width : 500px) {
    .search{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.globalHeader > form > input{
    width: 100%;
    height: 40px;
    margin-right: 10px;
    border: 1px solid #DDDDDD;
    padding: 6px;
}
.globalHeader > form > button{
    white-space: nowrap;
    height: 40px;
    /* margin-right: 20px; */
    padding:0px 30px;
    background: #1C84BF;
    font-family: 'Inter';
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
    border: 1px solid #DDDDDD
}



.globalMain{ 
    max-width: 800px;
    margin-top: 26px;
    margin-left: auto;
    margin-right: auto;
    
}
@media (max-width:500px) {
    .globalMain{ 
        margin-top: 26px;
        margin-left: 16px;
        margin-right: 16px;
        
    }
}

.siteList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    /* align-items: center; */
    /* border:1px solid blue */

}
@media (min-width:500px) {
    .siteList{
        display: flex;
        flex-wrap: wrap;
        justify-content: start; 
        /* align-items: center; */
        /* border:1px solid blue */
        margin-right:-52px;

    }
    
}
.siteList .site{    
    /* border:1px solid red; */
    width: 160px;
    height: 160px;
    background: white;
    margin-bottom: 18px;
    position: relative;

}
@media (min-width:500px) {
    .siteList .site{    
        /* border:1px solid red; */
        width: 160px;
        height: 160px;
        background: white;
        margin-bottom: 48px;
        margin-right: 53px;
        position: relative;
    
    }  
}
.siteList .site .logo{

    font-family: 'Inter';
    font-style: normal;
    font-size: 64px;
    align-items: center;
    text-align: center;
    padding-top: 18px;
}
.siteList .site .log .icon{
    width: 64px;
    height: 64px;
    border:1px solid red
}
.siteList .site .link{
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;

}

.siteList .site .close{
    right: 3px;
    top:0;
    position: absolute;
    display: none;
}
.siteList .site:hover .close{
    display: block;

}

@media (max-width:500px) {
    .siteList .site .close{
        right: 3px;
        top:0;
        position: absolute;
        display: block;
    }
}

.siteList .addButton{
    width: 160px;
    height: 160px;
    background: white;
    margin-bottom: 18px;
}

.siteList .addButton img{
    width: 100px;
    height: 100px;
    margin-left: 30px;
    margin-top: 30px;
}


