::selection{
    background-color: #E2953E;
}

body{
    background-color: #FEF5E7; 
    margin: 0;
    padding: 0;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #D9D9D9;
    height: 80px;
    margin: 0;
    box-sizing: border-box;
}

.header-logo{
    display: flex;
    align-items: center;
    width: 278.26px;
    height: 70px;
    margin-right: 200px;
}

.header-logo:hover{
    opacity: 0.7;
}

.header-logo:active{
    opacity: 0.5;
    transform: scale(0.95);
}

nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

nav ul li.contact{
    position: absolute;
    right: 50px;
}

nav ul li.contact a{
    color: transparent;
    -webkit-text-stroke: 2px black;
}

nav ul li.contact a:hover{
    color: black;
    -webkit-text-stroke: 0;
    filter: drop-shadow(0 0 20px black);
}

nav ul li.contact a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: black;
    border-radius: 5px;
    transition: width 0.2s ease, left 0.2s ease;
}

nav ul li.contact a:hover::after{
    width: 100%;
    left: 0;
}

nav ul li a{
    text-decoration: none;
    font-family: "Caveat",cursive;
    font-size: 40px;
    font-weight: bold;
    color: #E2953E;
    -webkit-text-stroke: 1px black;
    position: relative;
    overflow: hidden;
}

nav ul li a:hover {
    font-weight: bold;
    color: black;
    -webkit-text-stroke: 2px #E2953E;
    filter: drop-shadow(0 0 20px #E2953E);
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #E2953E;
    border-radius: 5px;
    transition: width 0.2s ease, left 0.2s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

main{
    margin-top: 80px;
    padding: 20px;
    margin-left: 100px;
    margin-right: 100px;
}

.catch-phrase{
    display: flex;
    background-image: url(image/actnow-recipe.png);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    height: 30vh;
    margin-top: 80px;
    padding: 20px;
}

h1{
    font-family: "Yusei Magic", serif;
    background: #E2953E;
    box-shadow: 0 0 30px #E2953E;
    border-radius: 1000px;
    line-height: 2;
    letter-spacing: 20px;
    text-align: center;
    margin-top: 80px;
    padding: 20px;
    font-size: 50px;
    font-weight: 300;
    margin: 0;
    padding-left: 100px;
    padding-right: 100px;
}

.actnow-item p{
    font-family: "Stick", serif;
    font-weight: 500;
    flex: 1;
    padding: 10px;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 2;
}

.cookpadURL{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cookpadURL h2{
    font-family: "Stick", serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 2;
}

.cookpadURL p{
    font-family: "Stick", serif;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 2;
}

.cookpadURL input{
    font-family: "Stick", serif;
    font-size: 20px;
    letter-spacing: 5px;
    width: 800px;
    padding: 15px;
    margin-bottom: 50px;
    background-color: #D9D9D9;
    border: 2px solid #D9D9D9;
    border-radius: 10px;
    box-shadow: 3px 3px 5px black;
}

.cookpadURL input:focus{
    border-left: solid 10px #E2953E;
    border-color: #E2953E;
    outline: none;
    box-shadow: none;
}

.cookpadURL button{
    font-family: "Stick", serif;
    display: block;
    margin: 0 auto;
    padding: 10px 200px;
    font-size: 15px;
    color: black;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background-color:#D9D9D9;
    border-color: black;
    box-shadow: 1px 1px;
}

.cookpadURL button:hover{
    color: white;
    background-color: #E2953E;
    border: none;
    box-shadow: 0 0 10px #E2953E;
}

.line{
    height: 2px;
    background-color: black;
    margin-top: 100px;
    margin-bottom: 60px;
    margin-left: 50px;
    margin-right: 50px;
}

.back-button-container {
    display: flex;
    justify-content: center;
}

.back-button {
    padding: 20px 100px;
    font-size: 20px;
    color: white;
    background-color: #E2953E;
    border: solid 2px black;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.back-button:hover {
    opacity: 0.9;
    border: none;
    box-shadow: 0 0 20px #E2953E;
    transform: scale(0.95);
}