
/* idセレクタは要素の後に"#~~"をつける*/
/* classセレクタに対しては.~~をつける*/
/*疑似クラス
要素；link リンク先をまだ見ていない状態のa要素
要素：visited　リンク先をすでに見た状態のa要素
要素:hover　カーソルが上にある状態の要素
要素:active　マウスのボタンなどが押されている場合の要素
*/

html{
    margin: 0;
    padding: 0;
    background-color: #1e046aea;
    width: 100%;

}

header{
    position: absolute;
    margin-top: 10px;
}
.sea{
    background-image: url(IMG_2975.JPG);
    background-size: cover;
    background-position: top;
    margin: 0;
    min-height: 120vh;
    display: flex;
    justify-content: space-between;
}


#title{
    display: block;
    float: left;
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    color: #ffffff;
    margin: 30px;
}
#garizarniImg{
    display: block;
    float: left;
    width: 10vh;
    height: 10vh;
    margin: 10px;
}

.links{
    float: left;
    display: block;
    position: relative;
    margin: 100px;
}
h2{
    clear: both;
    position: static;
    float: left;
    margin-left: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
article{
    margin-top: 100px;
    position: relative;
    clear: both;
    width: 70%;
}

.nodefine{
    border: 0;
    padding: 0;
    border-color: #000000;
    border-style: solid 1px;
    color: #ffffff;

}
aside{
    margin-top: 100px;
    position: relative;
    clear: both;
    width: 30%;
}

li{
    clear: both;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    display: block;
    margin: 20px;
    margin-left: 70px;
    float: left;
    text-align: center;
    padding: 0;
    position: static;
}
li:hover{
    background-color: #ffffff1c;
    border-radius: 10px;
}
p{
    border: 2px solid rgb(79, 185, 227);
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

li :visited{
    color: #ffffff;
}
footer{
    clear: both;
    background: #000000;
    text-align: center;
    padding: 20px 0;
    border-color:#000000;
}
footer p{
    color: #ffffff;
    border: #000000;
    
}